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

4 lines
80 B
Plaintext
Raw Normal View History

2019-08-26 00:13:34 -07:00
defn add x y = { x + y }
defn double x = { add x x }
defn main = { double 163 }