// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1366 globals endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function main takes nothing returns nothing local integer a local integer this local integer x local integer this_1 local integer x_1 local integer this_2 local integer x_2 call initGlobals() set this_2 = 3 set x_2 = 4 set this_1 = this_2 + x_2 set x_1 = 5 set this = this_1 + x_1 set x = 6 set a = this + x if a == 18 then call testSuccess() endif endfunction function config takes nothing returns nothing endfunction