Created
October 19, 2013 22:57
-
-
Save Rembane/7062589 to your computer and use it in GitHub Desktop.
A Haste example!
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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <h1>My web page</h1> | |
| This document has a heading and some text. <em>This sentence is emphasized.</em> | |
| <script src="main.js" type="text/javascript"></script> | |
| </body> | |
| </html> |
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
| module Main where | |
| import Haste | |
| main :: IO () | |
| main = alert "Hello world!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment