Group: comp.lang.forth · Group Profile · Search for F M F T T in comp.lang.forth
Author: Frank Buss
Date: Mar 2, 2008 08:01
... static void ficlPrimitiveF2D(ficlVm *vm) { float f = ficlStackPopFloat(vm->floatStack); ficlInteger doubleLow = ... and the registering part: ficlDictionarySetPrimitive(dictionary, "d>f", ficlPrimitiveD2F, FICL_WORD_DEFAULT); ficlDictionarySetPrimitive(dictionary, "... parsing function, now my f and f>d words are working as ... like this: 12. f -6. f f/ f>d drop . ...
|