Created
February 15, 2024 15:55
-
-
Save Bouzomgi/1e6a35999198e89adb31ba08381473a1 to your computer and use it in GitHub Desktop.
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
{"formatVersion":3,"distribution":["Library",[["sample"]],[],{"modules":[]}]} |
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 Sample exposing (..) | |
addOne : Int -> Int | |
addOne elem = elem + 1 | |
myVal : Int | |
myVal = 3 | |
mySum : Int | |
mySum = addOne myVal |
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
{ | |
"name": "Sample", | |
"sourceDirectory": "src", | |
"exposedModules": [ | |
"mySum" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment