• gforth floating-stack undefined?

    From Buzz McCool@21:1/5 to All on Wed May 4 10:31:23 2022
    https://www.complang.tuwien.ac.at/forth/gforth/Docs-html/Floating-point-stack.html
    says:

    "... just say that your program has an environmental dependency on a
    separate floating-point stack.

    floating-stack – n environment “floating-stack”

    n is non-zero, showing that Gforth maintains a separate floating-point
    stack of depth n."


    When I tried using this word, gforth didn't seem to like it. What am I
    doing wrong?

    $ gforth
    Gforth 0.7.3, Copyright (C) 1995-2008 Free Software Foundation, Inc.
    Gforth comes with ABSOLUTELY NO WARRANTY; for details type `license'
    Type `bye' to exit
    ok
    floating-stack
    :2: Undefined word
    floating-stack<<<
    Backtrace:
    $7F3632708A68 throw
    $7F363271EDB0 no.extensions
    $7F3632708D28 interpreter-notfound1

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Anton Ertl@21:1/5 to Buzz McCool on Wed May 4 21:23:57 2022
    Buzz McCool <buzz_mccool@yahoo.com> writes: >https://www.complang.tuwien.ac.at/forth/gforth/Docs-html/Floating-point-stack.html
    says:

    "... just say that your program has an environmental dependency on a
    separate floating-point stack.

    floating-stack – n environment “floating-stack”

    n is non-zero, showing that Gforth maintains a separate floating-point
    stack of depth n."


    When I tried using this word, gforth didn't seem to like it. What am I
    doing wrong?

    $ gforth
    Gforth 0.7.3, Copyright (C) 1995-2008 Free Software Foundation, Inc.
    Gforth comes with ABSOLUTELY NO WARRANTY; for details type `license'
    Type `bye' to exit
    ok
    floating-stack
    :2: Undefined word
    floating-stack<<<

    S" floating-stack" environment? .s

    - anton
    --
    M. Anton Ertl http://www.complang.tuwien.ac.at/anton/home.html
    comp.lang.forth FAQs: http://www.complang.tuwien.ac.at/forth/faq/toc.html
    New standard: http://www.forth200x.org/forth200x.html
    EuroForth 2021: https://euro.theforth.net/2021

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Buzz McCool@21:1/5 to Anton Ertl on Wed May 4 15:09:05 2022
    On 5/4/2022 2:23 PM, Anton Ertl wrote:
    S" floating-stack" environment? .s

    $ gforth
    Gforth 0.7.3, Copyright (C) 1995-2008 Free Software Foundation, Inc.
    Gforth comes with ABSOLUTELY NO WARRANTY; for details type `license'
    Type `bye' to exit
    S" floating-stack" environment? .s <2> 2048 -1 ok



    Thanks Anton!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)