Last active
April 29, 2016 20:32
-
-
Save kgashok/f57e456813871fd28aa2e5e844d65e11 to your computer and use it in GitHub Desktop.
First Elm program from Sublime
This file contains 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
-- https://packagecontrol.io/packages/sublime-github | |
import Html exposing (..) | |
main = | |
text "Hello, World!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Things have come full circle (
main()
in C ->main
in Elm)!