// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1367 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 ggg = aaa / 16 call colors_hexs(ggg) call colors_hexs(aaa - ggg * 16) set aaa = bbb / 16 call colors_hexs(aaa) call colors_hexs(bbb - aaa * 16) call testSuccess() endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction