Skip to content

Instantly share code, notes, and snippets.

@amitaibu
Created December 29, 2015 20:59
Show Gist options
  • Save amitaibu/00c1b28a55aadaefd4c0 to your computer and use it in GitHub Desktop.
Save amitaibu/00c1b28a55aadaefd4c0 to your computer and use it in GitHub Desktop.
Hello world in Elm
{
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"dependencies": {
"elm-lang/core": "3.0.0 <= v < 4.0.0"
},
"elm-version": "0.16.0 <= v < 0.17.0"
}
import Graphics.Element exposing (..)
main =
show "Hello world"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment