view modules/true.tp @ 236:c463a891ccd3

Support reading files larger than 1024 bytes in parser module
author Michael Pavone <pavone@retrodev.com>
date Fri, 03 Jan 2014 22:13:34 -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" }
}