http://groups.google.com/group/boolang/msg/0aa5b63a96906b5b
Just need to change a few things in boo.g and wsaboo.g,
then edit one line in the not-1.boo test case. These changes are mentioned
in the google note.
Also add a parser roundtrip test that these:
print true and true and true
print true or true or true
are printed out like so:
print (true and true) and true
print (true or true) or true
if there is not already such a test.
C# : false && true || true ==> true
Python : false and true or true ==> true
Python : 0 and 'yes' or 'no' ==> 'no'
Without this fix, boo says that "false and true or true" is false.