boojay icon indicating copy to clipboard operation
boojay copied to clipboard

literal char not handled

Open JamesCaska opened this issue 10 years ago • 0 comments

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"

JamesCaska avatar Sep 21 '14 11:09 JamesCaska