Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created December 21, 2012 07:23
Show Gist options
  • Save masaru-b-cl/4351205 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/4351205 to your computer and use it in GitHub Desktop.
Visual Studio Advent Calendar 2012用 greeter.ts
module TAKANO.Sho {
export class Greeter {
constructor (public name: string) {}
greet() {
WScript.Echo("Hello " + this.name + "!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment