RosettaCodeData/Task/A+B/Elm/a+b.elm
2017-09-25 22:28:19 +02:00

10 lines
210 B
Elm

--To write this function directly run cmd
--Type elm-repl to start
--Next enter this code
sum x y=x+y
--This creates a sum function
--When you enter sum A B
--You get output as A+B : number
--Task done!
--END