shithub: mc

ref: de4e4e086705df3cf6ea86e92151aff077a8e768
dir: /test/stdslcp.myr/

View raw version
use std

const main = {
	var a = [1,2,3,4,5]
	var b = [6,7,8,9,10]
	

	std.slcp(a[:a.len-2], a[2:])
	std.slcp(b[2:], b[:b.len-2])

	for x in a
		std.put("%i ", x)
	;;
	std.put("\n")
	for x in b
		std.put("%i ", x)
	;;
	std.put("\n")
}