aiken/examples/acceptance_tests/043/lib/tests.ak

8 lines
80 B
Plaintext

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