blog-static/code/compiler/08/examples/works2.txt

4 lines
80 B
Plaintext
Raw Normal View History

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