erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
1
2
3
4
concat|T, M: Nat, N: Nat|(l: [T; M], r: [T; N]): [T; M + N] = l + r

l: [Nat; 6] = concat [1, 2, 3], [4, 5, 6]
assert l == [1, 2, 3, 4, 5, 6]