// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1367 globals real a_return_x=0. real a_return_y=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_x = randomPoint() set a_return_y = randomPoint_return_y return a_return_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