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

7 lines
126 B
TypeScript

class HelloWorld {
static hello( /* Parameters go here */ ) {
// Your code here
}
}
export default HelloWorld