Add the examples to the repo.

This commit is contained in:
2019-08-26 00:13:34 -07:00
parent 918dfbe980
commit c2df5fdc78
5 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
defn add x y = { x + y }
defn double x = { add x x }
defn main = { double 163 }