nojanath / SublimeKSP

Fork of Nils Liberg's SublimeKSP plugin. See README for details.
GNU General Public License v3.0
86 stars 18 forks source link

Added 'continue' #384

Closed JackWilliams-FractureSounds closed 1 year ago

JackWilliams-FractureSounds commented 1 year ago

Adds syntax for K7.5 inbuilt 'continue'

on init
    declare i
    for i := 0 to 10
        if i = 4
            continue
        end if
    end for
end on