How to continue an IF statement on next line? - Solved
Posted: Sat Feb 06, 2021 1:37 pm
I have forgotten "How to continue an IF statement on next line".
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
# if / then on a single line...
if bool is true then <commands that finish the statement>
# more traditional if / then structure...
if a=xy then
add z to xy
move button 4 to xy
end if
# line continuation character is '\', in case this is what you meant....
if a is among the numbers of field 2 then put a + b \
into field 4