view modules/false.tp @ 186:35d2cc193d99

Add string conversion inside array join so callers don't need to worry about doing string conversions themselves
author Mike Pavone <pavone@retrodev.com>
date Mon, 26 Aug 2013 17:27:17 -0700
parents 59a94f3ad56f
children 1417f13f219c
line wrap: on
line source

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