boojay
boojay copied to clipboard
literal char not handled
literal char generates compiler error
Works ok in BOO but generates error in Boojay
Compiler error: BCE0055: Internal compiler error: isInteger(node.Left) and isInteger(node.Right)
a = 97
if a == 97:
print "OK"
if a == 'a'[0]:
print "OK"
if a == char('a'):
print "OK"