diff options
Diffstat (limited to 'src/client/Reads.elm')
-rw-r--r-- | src/client/Reads.elm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/Reads.elm b/src/client/Reads.elm new file mode 100644 index 0000000..7bc1bbc --- /dev/null +++ b/src/client/Reads.elm @@ -0,0 +1,10 @@ +module Reads + ( readInt + ) where + + +import Native.Reads +import Result exposing (Result) + +readInt : String -> Result String Int +readInt = Native.Reads.readInt |