Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save liamcurry/d1e12783b4f5d0a9c8fbe8b005743f5c to your computer and use it in GitHub Desktop.
Save liamcurry/d1e12783b4f5d0a9c8fbe8b005743f5c to your computer and use it in GitHub Desktop.
import Html exposing (text)
import Json.Decode exposing (decodeString, int)
-- this won't work
i : String
i =
"726826386187374600"
main =
i
|> decodeString int
|> toString
|> text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment