Skip to content

Instantly share code, notes, and snippets.

@shawnwildermuth
Created February 1, 2016 03:38
Show Gist options
  • Save shawnwildermuth/c3f161a69a0d9ef89fb8 to your computer and use it in GitHub Desktop.
Save shawnwildermuth/c3f161a69a0d9ef89fb8 to your computer and use it in GitHub Desktop.
Little TypeScript sample
public export class TestMe {
name: string;
isThere: boolean;
constructor() {
this.name = "Hello World";
this.isThere = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment