// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1366 globals integer tempReturn_integer=0 endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function cyc_c takes integer funcChoice, integer i returns nothing if funcChoice == 0 then if i == 0 then set tempReturn_integer = 0 return endif call cyc_c(2, i / 2) return elseif funcChoice == 1 then if i == 0 then set tempReturn_integer = 0 return endif call cyc_c(0, i / 2) return elseif funcChoice == 2 then if i == 0 then set tempReturn_integer = 0 return endif call cyc_c(1, i / 2) return endif endfunction function init_test takes nothing returns nothing call cyc_c(2, 42) if tempReturn_integer == 0 then call testSuccess() endif endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction