blog-static/code/compiler/03/works2.txt

4 lines
80 B
Plaintext

defn add x y = { x + y }
defn double x = { add x x }
defn main = { double 163 }