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

function init_A takes nothing returns nothing
endfunction

function foo takes integer x returns integer
	return x * 2
endfunction

function init_C takes nothing returns nothing
	call foo(2)
endfunction

function main takes nothing returns nothing
	call initGlobals()
	call init_A()
	call init_C()
endfunction

function config takes nothing returns nothing
endfunction