// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1365 globals endglobals native println takes string s returns nothing native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function print takes integer x returns nothing call println(I2S(x)) endfunction function init_test takes nothing returns nothing call print(1) call print(2) call print(3) call print(4) call print(5) call print(6) call print(7) call print(8) call print(9) call testSuccess() endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction