Created
January 1, 2016 15:14
-
-
Save freakingawesome/547bd36434868987bc4d to your computer and use it in GitHub Desktop.
This file contains 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 Html exposing (..) | |
main = | |
let | |
line n = | |
div [] [ text <| "Line #" ++ (toString n) ] | |
in | |
div [] | |
<| List.map line [0..100] | |
port scrollTop : Signal Int | |
port title : Signal String | |
port title = | |
Signal.map toString scrollTop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment