// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1365 globals real a_return_v_x=0. real a_return_v_y=0. real a_return_r=0. real randomPoint_return_x=0. real randomPoint_return_y=0. endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function randomPoint takes nothing returns real set randomPoint_return_x = GetRandomReal(0., 1.) set randomPoint_return_y = GetRandomReal(3., 4.) return randomPoint_return_x endfunction function a takes nothing returns real set a_return_v_x = randomPoint() set a_return_v_y = randomPoint_return_y set a_return_r = 1. return a_return_v_x endfunction function init_test takes nothing returns nothing call a() call testSuccess() endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction