// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1365 globals endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function colors_hexs takes integer i returns string return "a" endfunction function foo takes integer i returns integer return 1 endfunction function init_test takes nothing returns nothing local integer aaa = foo(1) local integer bbb = foo(2) local integer fff = aaa local integer ggg = fff / 16 local integer kkk = fff - ggg * 16 local integer eee local integer hhh local integer iii call colors_hexs(ggg) call colors_hexs(kkk) set eee = bbb set hhh = eee / 16 set iii = eee - hhh * 16 call colors_hexs(hhh) call colors_hexs(iii) call testSuccess() endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction