Created
October 20, 2014 23:01
-
-
Save fromheten/2c7e930a6b1170bc8c15 to your computer and use it in GitHub Desktop.
Late night thinking about
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
Late night thoughts | |
<!-- html --> | |
<html> | |
<head> | |
<title>Website compiled from JSON</title> | |
</head> | |
<body> | |
<h1>This is a title</h1> | |
<p>This paragraph is interesting</p> | |
</body> | |
</html> | |
<!-- JSON --> | |
{html: | |
{head: | |
{title: "Website compiled from JSON"} | |
}, | |
{body: | |
{h1: "This is a title"}, | |
{p: "This paragraph is interesting"} | |
} | |
} | |
;; Lisp | |
(html | |
(head | |
(title "Website compiled from Lisp")) | |
(body | |
(h1 "This is a title") | |
(p "This paragraph is interesting"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment