On Friday 31 August 2007 09:35, Sergey Plis wrote: > A very strange thing. > > Here is an example forth session: > > order GSL AGRAPH VECTORS FLOAT FORTH FORTH ROOT FORTH ok > > : test ; ok > > order GSL AGRAPH VECTORS FLOAT FORTH FORTH ROOT FORTH ok > forget test ok > order GSL AGRAPH VECTORS FORTH FORTH FORTH ROOT FORTH ok > float don't know float > > You can see that the third vocabulary is FLOAT up until "forget" is > called. Then what happens?
You probably import float with
| import float
which means that the float module can be removed any time later
("headerless"). The FORGET seems to trigger that.
Solution: Don't import float with the | before. Just
import float
and it will be permanent.
--
Bernd Paysan
"If you want it done right, you have to do it yourself"
http://www.jwdt.com/~paysan/
pgp90oygeISxO.pgp
Description: PGP signature
