hello,

Is it possible to have a program, which consists of multiple IMCC source files?
So, something like this: (pseudo code, don't know IMCC (yet))

-----------------------------------------
/* File #1: */
...
call funcA
...
sub funcB(x)
/* do something */
end sub
...
---------------------------------------
/* File #2 */
...
sub funcA(x)
/* do something */
end sub
...
call funcB(123)
...
-----------------------------------------

So some function defined in File 2 will be called from File 1. 
Is this possible? If yes, (how) will this be checked during assembling? Are there some 
kind of 'header'-like files?
Or, is this only possible directly in Parrot ASM? If so, how is checking done then?

Regards,
Klaas-Jan

Reply via email to