resource tbool() bool a,b a= false b= true write(a,b, " <",a=",a>=b, " >",a>b) a = true b = true write(a,b, " <",a=",a>=b, " >",a>b) a= true b= false write(a,b, " <",a=",a>=b, " >",a>b) if (a <= b) { write("OOPS. Really bad", a <= b) } else { write( "ok", a <= b ) } bool c = a <= b if (c) { write("OOPS. Really bad", c, a <= b) } else { write( "ok", c, a <= b ) } end