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

8 lines
78 B
Plaintext

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