8 lines
85 B
Plaintext
8 lines
85 B
Plaintext
defn add x y = { x + y }
|
|
|
|
defn main = {
|
|
case add of {
|
|
n -> { 1 }
|
|
}
|
|
}
|