mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-13 15:26:24 +00:00
9 lines
126 B
Text
9 lines
126 B
Text
interface Transitive
|
|
exposes [
|
|
add,
|
|
]
|
|
imports []
|
|
|
|
add = \num1, num2 -> (num1 + num2)
|
|
|
|
expect add 1 2 == 3
|