shithub: mc

ref: 3c9502102b2b01d6b32dad5f4f23f6f1fe736721
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
	sl = std.slgrow(sl, 123)
	sl[122] = 30
	-> sl[0] + sl[122]
}