Najdorf #1 can you use some C code for critical functions in blitzmax? If so, is there some example available somewhere?Thx,Matteo
Perturbatio #2 C file: /* addnum.c */ int addFive( int x ){ return x+5; } BMax file: Import "addnum.c" Extern Function addFive( x ) End Extern a = 10 a = addFive(a) print a