int false = -2
int true = 1
bool f = false
bool t = true
'this works
print "should be false " str( not( t ) )
print "should be true " str( not( f ) )
'this works
print "should be false " str not(t)
print "should be true " str not(f)
'this doesn't give correct answer
print "should be false " str( not t )
print "should be true " str( not f )
'this gives errors
'print "should be false " not t
'print "should be true " not f
'this gives errors also
'print "should be false " not( t )
'print "should be true " not( f )