view modules/false.tp @ 366:810b6115c1d4

Add a pop method to array
author Michael Pavone <pavone@retrodev.com>
date Sat, 08 Aug 2015 21:13:26 -0700
parents bb2b4613fdc8
children
line wrap: on
line source

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