view modules/false.tp @ 250:c58e17f5c0f6

Added hash dictionary to dict module
author Michael Pavone <pavone@retrodev.com>
date Wed, 09 Apr 2014 22:55:10 -0700
parents 1417f13f219c
children bb2b4613fdc8
line wrap: on
line source

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