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

4 lines
80 B
Plaintext
Raw Normal View History

2019-10-26 20:30:29 -07:00
defn add x y = { x + y }
defn double x = { add x x }
defn main = { double 163 }