ref: 0c0a9801c0e2b92832a9f91d6a6e7f94e8ba277d dir: /test/slalloc.myr/
/* test the allocation of slices. should return 123 */ use std const main = { var sl : int[:] sl = std.slalloc(123) sl[0] = 42 sl[122] = 1 std.exit(sl.len) }