Skip to content

Instantly share code, notes, and snippets.

@fariszacina
Last active May 30, 2023 21:12
Show Gist options
  • Save fariszacina/bd122ea5566e6c84768e to your computer and use it in GitHub Desktop.
Save fariszacina/bd122ea5566e6c84768e to your computer and use it in GitHub Desktop.
TypeScript - Hello World Typescript
class Greeter {
constructor(public greeting: string) { }
greet() {
return "<h1>" + this.greeting + "</h1>";
}
};
var greeter = new Greeter("Hello, Ministry of Programming!");
var str = greeter.greet();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment