16 lines
240 B
Plaintext
Raw Normal View History

2024-07-26 17:33:51 +00:00
main() {
f(1, 2, 3, 4, 5, 6)
}
2024-08-05 16:47:24 +00:00
f(a Int, b Int, c Int, d Int, e Int, f Int) {
g(f, e, d, c, b, a)
2024-07-26 17:33:51 +00:00
}
2024-08-05 16:47:24 +00:00
g(a Int, b Int, c Int, d Int, e Int, f Int) {
2024-07-26 17:33:51 +00:00
assert a == 6
assert b == 5
assert c == 4
assert d == 3
assert e == 2
assert f == 1
}