Last active
January 11, 2020 05:47
-
-
Save treeform/59f794948e8ab676fcce01a697b7ad76 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
| let a = html: | |
| html: | |
| lang "en" | |
| head: | |
| meta: | |
| charset "utf-8" | |
| title "myTitle" | |
| meta: | |
| name "description" | |
| content "myDescription" | |
| meta: | |
| name "author" | |
| content "myName" | |
| link: | |
| rel "stylesheet" | |
| href "myCss" | |
| body: | |
| script: | |
| src "myScript" | |
| if true: "t" else: "f" | |
| if false: "f" | |
| if true: "t" | |
| divs: | |
| for i in 0..1: | |
| for j in 0..1: | |
| p $i & $j |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment