block1.two: print "block1.one greater than block1.two" elif block1.one < block1.two: print "block1.one less than block1.two" else: print "Comparison System needs food badly" // Slices print block1.one[:2] // // function call // from string import lower print lower ("FOO") print lower (str(block2.alter)) // // validate local namespace // print "Showing local namespace access" print "Value" print self print "readonly" print self.__properties__.readonly // Things that don't work but probably should and how to fix it // // block1.five = block2.alter + block1.one + block1.two // (add __add__ support to GTriggerNSObject) // // print lower (block2.alter) // (this fails because block2.alter is a GTriggerNSObject // not a string so it fails when the lower function attempts // to call a lower() function that GTriggerNSObject doesn't implement // No good solution known at this time)*/ ]]>