Skip to content

Commit

Permalink
Add examples directory
Browse files Browse the repository at this point in the history
  • Loading branch information
calintat committed Apr 12, 2023
1 parent 1661eea commit b840745
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/thunks.sd
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bind thunk1 = y z . bind a = +(x, y) in bind b = +(a, z) in b in
bind thunk2 = y z u . bind a = +(x, y) in bind b = +(a, z) in bind c = +(b, u) in c in
bind thunk3 = y z u v . bind a = +(x, y) in bind b = +(a, z) in bind c = +(b, u) in bind d = +(c, v) in d in
bind a = +(thunk1, thunk2, thunk3) in
a

0 comments on commit b840745

Please sign in to comment.