Created
April 17, 2020 20:22
-
-
Save dullbananas/751621128fd1656d6865396e148243b6 to your computer and use it in GitHub Desktop.
elm importer concept
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 elm_importer | |
>>> import Thing | |
>>> Thing.add4 7 | |
11 |
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 Thing exposing ( add4 ) | |
add4 : Int -> Int | |
add4 = | |
(+) 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment