Posted: 6th Nov 2011 23:17
How do you do line continuation in Tier 1? I googled it and found that underscore is supposed to work, however AppGameKit compiles succesffuly but the logic doesn't actually work... For example, doing this:

+ Code Snippet
    if Test = 0 OR _
    Test = 1 OR _
    Test = 2
        Print("Test")
    endif


Instead of this:

+ Code Snippet
    
    if Test = 0 OR Test = 1 OR Test = 2
        Print("Test")
    endif


Compiles but never actually returns true and prints Test. Am I doing something wrong?
Posted: 7th Nov 2011 15:24
I don't think you can use line continuation in Tier1 yet, put it as a request at the issue board.
Posted: 7th Nov 2011 15:46
Thanks Impetus73... I just wanted to make sure I wasn't doing anything incorrectly... I have added to the issue/enhancement board...