Installed

elm/browser
1.0.2
elm/core
1.0.5
elm/html
1.0.0

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
evancz/elm-playground
1.0.3
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
-- Show a list of items I need to buy at the grocery store.
2
--
3
​
4
import Html exposing (..)
5
​
6
​
7
main =
8
  div []
9
    [ h1 [] [ text "My Grocery List" ]
10
    , ul []
11
        [ li [] [ text "Black Beans" ]
12
        , li [] [ text "Limes" ]
13
        , li [] [ text "Greek Yogurt" ]
14
        , li [] [ text "Cilantro" ]
15
        , li [] [ text "Honey" ]
16
        , li [] [ text "Sweet Potatoes" ]
17
        , li [] [ text "Cumin" ]
18
        , li [] [ text "Chili Powder" ]
19
        , li [] [ text "Quinoa" ]
20
        ]
21
    ]