Skip to content

Instantly share code, notes, and snippets.

@johnlindquist
Created July 8, 2013 13:20
Show Gist options
  • Save johnlindquist/5948726 to your computer and use it in GitHub Desktop.
Save johnlindquist/5948726 to your computer and use it in GitHub Desktop.
module office{
export class Chair {
rotate(){
alert("spin!");
}
}
}
var chair = new office.Chair();
chair.rotate();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment