Skip to content

Instantly share code, notes, and snippets.

@ncammarata
Created January 9, 2015 00:55
Show Gist options
  • Select an option

  • Save ncammarata/7fbda9ae07bc6b519fcf to your computer and use it in GitHub Desktop.

Select an option

Save ncammarata/7fbda9ae07bc6b519fcf to your computer and use it in GitHub Desktop.
App {
state = { left = 50, name = "nick" },
template =
h1(left: @left) hello man
button(click: @left -= 50) go left
button(click: @left += 50) go right
h1() my name is {@name}
input(sync: @name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment