shithub: mc

ref: 34f2230c4a505f3b94bc33ed07f0839fe66a0e93
dir: /test/slgrow.myr/

View raw version
/* 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])
}