view samples/compilerbug_002.tp @ 61:a6addd8c6bd4

Fix array resizing to use newsize * sizeof(object *) rather than just newsize
author Mike Pavone <pavone@retrodev.com>
date Sat, 14 Jul 2012 04:18:46 -0700
parents 93ddb4ad6fcb
children
line wrap: on
line source

#{
	value <- 42
	main <- {
		foo <- {
			bar <- {value}
			bar:
		}
		print: (string: (foo: ))
	}
}