feat: add identity, always, & flip

This commit is contained in:
rvcas
2023-01-14 23:21:42 -05:00
committed by Lucas
parent 9daf86e984
commit 00f2150eed
11 changed files with 314 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
fn substract(x, y) {
x - y
}
test flip_1() {
flip(substract)(3, 2) == -1
}