exercism/typescript/hello-world/hello-world.ts

7 lines
126 B
TypeScript
Raw Normal View History

2018-08-14 22:28:48 +00:00
class HelloWorld {
static hello( /* Parameters go here */ ) {
// Your code here
}
}
export default HelloWorld