view samples/testarray.tp @ 251:2557ce4e671f

Fix a couple of compiler bugs. topenv was getting initialized in multiple places. This resulted in multiple copies of modules getting created which caused problems for macro expansion. Additionally, arguments were not being marked as declared during code generation so assigning to an argument that was not closed over generated invalid C code.
author Michael Pavone <pavone@retrodev.com>
date Fri, 11 Apr 2014 22:29:32 -0700
parents 48daa1d3e052
children 810b6115c1d4
line wrap: on
line source

#{
	sum <- :arr {
		cursum <- 0
		foreach: arr :idx el {
			cursum <- cursum + el
		}
		cursum
	}
	main <- {
		foo <- #[42 30 28]
		bar <- #[]
		bar append: 30
		bar append: 28
		bar append: 42
		print: "" . ((sum: foo) + (sum: bar)) . "\n"
	}
}