// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1366 globals endglobals native takesString takes string s returns nothing function initGlobals takes nothing returns nothing endfunction function main takes nothing returns nothing local string s1 local string s2 call initGlobals() set s1 = "1" set s2 = "2" call takesString(s1 + s2) endfunction function config takes nothing returns nothing endfunction