/sys/doc/ Documentation archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: (Unknown)



The problem is that print is undefined.  You imported it from sys, but you
never
loaded the sys module.  the first line of init should be

	sys = load Sys Sys->PATH;

This should be very clear from the examples in the documentation.

-rob