Skip to content

Instantly share code, notes, and snippets.

@joannecheng
Last active May 19, 2016 12:47
Show Gist options
  • Save joannecheng/0465d72138b1fcce88ec to your computer and use it in GitHub Desktop.
Save joannecheng/0465d72138b1fcce88ec to your computer and use it in GitHub Desktop.
Elm Things

Setting up a new development folder:

mkdir [projectname]
cd [projectname]
elm-reactor

include elm.js in html file.

HOW DO RANDOM NUMBERS WORK

import Random (..)

seed : Seed
seed = initialSeed(10)

(number, newSeed) = generate (float -140 140) seed
-- nothing works.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment