// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1367
globals
endglobals
native takesString takes string s returns nothing
function initGlobals takes nothing returns nothing
endfunction

function test takes nothing returns nothing
	local string s1 = "1"
	local string s2 = "2"
	call takesString(s1 + s2)
endfunction

function init_Test takes nothing returns nothing
	call test()
endfunction

function main takes nothing returns nothing
	call initGlobals()
	call init_Test()
endfunction

function config takes nothing returns nothing
endfunction