view samples/testarray.tp @ 270:b74956a2196f

Add a propertiesOf method to the object module that returns the names of things that look like getter messages
author Michael Pavone <pavone@retrodev.com>
date Fri, 18 Jul 2014 20:45:50 -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"
	}
}