view modules/true.tp @ 254:0ee70ac20a02

Support assigment of literals while preparing the environment for a macro
author Michael Pavone <pavone@retrodev.com>
date Sat, 31 May 2014 21:30:18 -0700
parents 1417f13f219c
children bb2b4613fdc8
line wrap: on
line source

#{
	if <- :self trueblock {
		trueblock:
	}
	ifnot <- :self falseblock {
		self
	}
	if:else <- :self trueblock :elseblock {
		trueblock:
	}
	not <- {
		false
	}
	string <- { "true" }
}