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

4 lines
80 B
Plaintext
Raw Normal View History

2020-09-08 18:38:05 -07:00
defn add x y = { x + y }
defn double x = { add x x }
defn main = { double 163 }