Created
January 9, 2015 00:55
-
-
Save ncammarata/7fbda9ae07bc6b519fcf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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