Last active
May 21, 2016 18:22
-
-
Save j-hannes/fa4804edafd73cc25b82703378cc2d0f to your computer and use it in GitHub Desktop.
Counter V0-V1
This file contains hidden or 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
module Main exposing (..) | |
import Html exposing (button, div, span, text) | |
+ import Html.App as Html | |
main = | |
+ view | |
+ | |
+ view = | |
div [] | |
[ button [] [ text "-" ] | |
, span [] [ text "0" ] | |
, button [] [ text "+" ] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment