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

12 lines
103 B
Plaintext

pub fn foo(_a: a) -> Bool {
True
}
test test_1() {
foo(1)
}
test test_2() {
foo(1) && foo(2)
}