Skip to content

Instantly share code, notes, and snippets.

@goofmint
Last active April 14, 2017 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/f5ede005a41ec4ecaa3d5db06c730ba6 to your computer and use it in GitHub Desktop.
Save goofmint/f5ede005a41ec4ecaa3d5db06c730ba6 to your computer and use it in GitHub Desktop.
2.md
class Greeter {
constructor(public greeting: string) { }
greet() {
return "<h1>" + this.greeting + "</h1>";
}
};
var greeter = new Greeter("Hello, world!");
document.body.innerHTML = greeter.greet();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment