// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1366 globals endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function init_test takes nothing returns nothing local real tuple_temp_1 = Cos(1.5708) * 10. local real tuple_temp = Sin(1.5708) * 10. set tuple_temp_1 = 1. + tuple_temp_1 set tuple_temp = 2. + tuple_temp if tuple_temp_1 >= 0.99 and tuple_temp_1 <= 1.01 and tuple_temp >= 11.99 and tuple_temp <= 12.01 then call testSuccess() endif endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction