// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1367 globals real blub_return_x=0. real blub_return_y=0. real blub_return_z=0. endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function blub takes real x, real y returns real set blub_return_x = x set blub_return_y = y set blub_return_z = 0. return blub_return_x endfunction function init_test takes nothing returns nothing local real tuple_temp = blub(4., 5.) local real tuple_temp_1 = blub_return_y local real tuple_temp_2 = blub_return_z local real v_x = tuple_temp local real v_y = tuple_temp_1 local real v_z = tuple_temp_2 if v_x == 4. and v_y == 5. and v_z == 0. then call testSuccess() endif endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction