// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1365 globals real vec2_withZ_return_x=0. endglobals function initGlobals takes nothing returns nothing endfunction function vec2_withZ takes real this_x, real this_y, real z returns real set vec2_withZ_return_x = this_x return vec2_withZ_return_x endfunction function init_test takes nothing returns nothing call vec2_withZ(3., 4., 5.) endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction