// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1365 globals endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function main takes nothing returns nothing local integer ints_0 local integer ints_1 local integer ints_2 local integer ints_3 local integer sum call initGlobals() set ints_0 = 1 set ints_1 = 2 set ints_2 = 3 set ints_3 = 4 set sum = 0 set sum = sum + ints_0 set sum = sum + ints_1 set sum = sum + ints_2 set sum = sum + ints_3 if sum == 10 then call testSuccess() endif endfunction function config takes nothing returns nothing endfunction