From: Matthias T. <mt...@we...> - 2011-05-25 18:20:27
|
Hi Pito, > Thanks, now it compiles! > My feeling is I have to add the rec-float to the recognizer's list. > How to? http://amforth.sourceforge.net/amforth.pdf in short: use a word place-rec as a helper word. : place-rec ( xt -- ) get-recognizer dup >r 1- n>r swap nr> drop r> 1+ set-recognizer ; and have a look at the following session log > 123e4 fs. 123e4 ?? -13 6 > ' rec-float place-rec ok > 123e4 fs. 1.2299999E6 ok > HTH Matthias |