// 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 local integer tuple_temp = 1 local integer tuple_temp_1 = 2 local integer tuple_temp_2 = 3 local integer tuple_temp_3 = 4 local integer tuple_temp_4 = 5 local integer tuple_temp_5 = 6 local integer t_a_x = tuple_temp local integer t_a_y = tuple_temp_1 local integer t_a_z = tuple_temp_2 local integer t_b_x = tuple_temp_3 local integer t_b_y = tuple_temp_4 local integer t_b_z = tuple_temp_5 local integer tuple_temp_6 local integer tuple_temp_7 local integer tuple_temp_8 call print(t_a_x) call print(t_a_y) call print(t_a_z) call print(t_b_x) call print(t_b_y) call print(t_b_z) set tuple_temp_6 = 7 set tuple_temp_7 = 8 set tuple_temp_8 = 9 set t_a_x = tuple_temp_6 set t_a_y = tuple_temp_7 set t_a_z = tuple_temp_8 call print(t_a_x) call print(t_a_y) call print(t_a_z) if t_a_x == 7 and t_a_y == 8 and t_a_z == 9 then call testSuccess() endif endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction