4 lines
80 B
Plaintext
4 lines
80 B
Plaintext
|
defn add x y = { x + y }
|
||
|
defn double x = { add x x }
|
||
|
defn main = { double 163 }
|