# HG changeset patch # User Mike Pavone # Date 1342324878 25200 # Node ID 327db7cf37a246cbe56331b22da49de2690c04b2 # Parent ab6f24d6945d66bf52833fde54fad763a1e3adf5# Parent 01b6f8204cdf1e30ce903621d09b3fdf132ecdaf merge diff -r ab6f24d6945d -r 327db7cf37a2 modules/false.tp --- a/modules/false.tp Sat Jul 14 21:00:21 2012 -0700 +++ b/modules/false.tp Sat Jul 14 21:01:18 2012 -0700 @@ -5,4 +5,7 @@ if:else <- :self trueblock :elseblock { elseblock: } + not <- { + true + } } diff -r ab6f24d6945d -r 327db7cf37a2 modules/true.tp --- a/modules/true.tp Sat Jul 14 21:00:21 2012 -0700 +++ b/modules/true.tp Sat Jul 14 21:01:18 2012 -0700 @@ -5,4 +5,7 @@ if:else <- :self trueblock :elseblock { trueblock: } + not <- { + false + } }