Installed

elm/browser
1.0.2
elm/core
1.0.5
elm/html
1.0.0
evancz/elm-playground
1.0.3

Registry

elm/http
2.0.0
elm/random
1.0.0
elm/time
1.0.0
elm/file
1.0.5
elm/json
1.1.3
elm/svg
1.0.1
elm-explorations/webgl
1.1.3
w0rm/elm-physics
5.1.3
rtfeldman/elm-css
18.0.0
mdgriffith/elm-ui
1.1.8
​x
 
1
-- Create pictures from simple shapes. Like a tree!
2
--
3
-- Learn more about the playground here:
4
--   https://package.elm-lang.org/packages/evancz/elm-playground/latest/
5
--
6
​
7
import Playground exposing (..)
8
​
9
​
10
main =
11
  picture
12
    [ rectangle brown 40 200
13
        |> moveDown 80
14
    , circle green 100
15
        |> moveUp 100
16
    ]