view samples/testarray.tp @ 111:b2a3f202d485

Fleshed out the UI a little. Added a "literal" button that replaces the operator panel with a literal panel. Added the navigation buttons, but they're not functional yet.
author Mike Pavone <pavone@retrodev.com>
date Sun, 14 Apr 2013 17:24:53 -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"
	}
}