function StartNewThread takes code c returns nothing
call ForForce(bj_FORCE_PLAYER[0], c)
endfunction
function StartNewThread takes code c returns nothing
if bj_FORCE_PLAYER[0] == null then
set bj_FORCE_PLAYER[0] = CreateForce()
endif
call ForForce(bj_FORCE_PLAYER[0], c)
endfunction
function Rawr takes nothing returns nothing
endfunction
function a takes code b returns nothing
call b
endfunction
function c takes nothing returns nothing
call a(function Rawr)
endfunction