Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bautistaaa/75b2fe385986adb47ad33d0f5dd64634 to your computer and use it in GitHub Desktop.
Save bautistaaa/75b2fe385986adb47ad33d0f5dd64634 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