view modules/true.tp @ 197:1417f13f219c

Added string method to true and false modules
author Mike Pavone <pavone@retrodev.com>
date Tue, 27 Aug 2013 22:50:48 -0700
parents 59a94f3ad56f
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" }
}