view modules/true.tp @ 218:b799192e404b

Implemented match:where:yield and fixed a bug in zeroPlus
author Michael Pavone <pavone@retrodev.com>
date Sat, 21 Dec 2013 12:08:06 -0800
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" }
}