> Hello
>
> I am using Neko, and i am not able to read a file:
>
> source = $smake(2000);
> source = file_contents("differ.txt");
> Called from lolita.neko line 14
> Uncaught exception - Invalid call
>
> Also this code does'nt works:
>
> var fl = file_open("differ.txt","r");
>
> best regards
You first need to load the primitives :
file_contents = $loader.loadprim("[EMAIL PROTECTED]",1);
file_open = $loader.loadprim("[EMAIL PROTECTED]",2);
Nicolas
--
Neko : One VM to run them all
(http://nekovm.org)