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?