mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 21:58:03 +00:00
7 lines
79 B
Text
7 lines
79 B
Text
module [
|
|
add,
|
|
]
|
|
|
|
add = \num1, num2 -> (num1 + num2)
|
|
|
|
expect add(1, 2) == 3
|