Files
circ/scripts/zcx_tests/single_generic.zx
2025-02-12 09:07:15 -08:00

7 lines
105 B
Plaintext

def last<N>(u32[N] a) -> u32 {
return a[N-1];
}
def main() -> u32 {
return last([1u32, 2, 3]);
}