ref: 76c34b542f0b5c0cd6cc60a9cef9d53b6fc899d1
dir: /test/slgrow.myr/
/* checks that our slice grow function works. exits with 42. */
use std
const main = {
var sl
sl = std.slalloc(42)
sl[0] = 12
std.slgrow(&sl, 123)
sl[122] = 30
std.exit(sl[0] + sl[122])
}