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
#!/usr/bin/env bash | |
# elm-format-wrapper 1.0.0 | |
# | |
# Usage: | |
# elm-format-wrapper [--help] [--action=ACTION] PATH... | |
# | |
# Description: | |
# Format paths like elm-format, but allow ignoring blocks of code: | |
# |
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
import Signal exposing (Signal, Address) | |
import Html exposing (Html, div, button, text) | |
import Html.Events exposing (onClick) | |
-- There would normally be "import StartApp.Simple as StartApp exposing (start) | |
-- but for learning purposes we roll our own at the bottom. | |
-- Check it out after grasping this Counter example! | |
-- Our Counter will | |
-- 1. display a number |