retroforth/doc/Glossary.html
crc 6c5b605ea6 prefix:" is now deprecated
FossilOrigin-Name: fbbae06212216529a41d0c4ca5703a4ea86159e9febe9ba4558dc341a83fe004
2019-12-30 15:34:24 +00:00

3856 lines
186 KiB
HTML

<h2>"</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return an empty string. Deprecated.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>$</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return ASCII:NUL (0).</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>'</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return an empty string.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>(</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Provide a visual indication of a code group.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>)</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Provide a visual indication of a code group.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>*</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Multiply `n1` by `n2` and return the result.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #2 #6 *
#-1 #100 *</xmp>
</p>
<hr/>
<h2>+</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Add `n1` to `n2` and return the result.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #1 #2 + </xmp>
</p>
<hr/>
<h2>,</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Store the specified value into the memory at `here` and increment `Heap` by 1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> $a , $b , $c , #0 ,</xmp>
</p>
<hr/>
<h2>-</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Subtract `n2` from `n1` and return the result.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #2 #1 - </xmp>
</p>
<hr/>
<h2>---reveal---</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Switch to the exposed (public) portion of a lexical namespace.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>-eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare two values for inequality. Returns `TRUE` if they are not equal or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #1 #2 -eq?
$a $b -eq?</xmp>
</p>
<hr/>
<h2>-if</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> fq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quotation if the flag is `FALSE`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>-if;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> fq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quotation if the flag is `FALSE`. If false, also exit the word.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>/</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-q<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Divide `n` by `m` and return the integer part of the quotient.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>/mod</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-rq<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Divide `n` by `m` and return the integer part of the quotient and remainder.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>0;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-n || n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>If `n` is zero, drop `n` and exit the current word. If non-zero, leave `n` alone and allow execution to continue.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>End the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>?dup</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-nn || n-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Duplicate top value on stack if not zero. If zero, do nothing.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #1 ?dup
#0 ?dup</xmp>
</p>
<hr/>
<h2>ASCII:ACK</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:BEL</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:BS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:CAN</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:CR</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:DC1</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:DC2</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:DC3</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:DC4</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:DEL</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:DLE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:EM</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:ENQ</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:EOT</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:ESC</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:ETB</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:ETX</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:FF</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:FS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:GS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:HT</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:LF</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:NAK</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:NUL</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:RS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:SI</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:SO</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:SOH</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:SPACE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:STX</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:SUB</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:SYN</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:US</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ASCII:VT</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Refers to specific ASCII code.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>ASCII</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>Compiler</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. Holds the compiler state. If TRUE, the compiler is active. If FALSE, it is not.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>Dictionary</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. Holds a pointer to the most recent dictionary header.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>EOM</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Returns the last addressable memory address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>FALSE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Returns `0`, the value used to indicate a FALSE result.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>FREE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Returns the number of cells available to your application. This is the amount of memory, less the already consumed portion and buffers mapped for RETRO's internal use.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>Heap</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. Holds the address of the next available cell.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>I</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Access the loop index for the current loop. (For loops made using `times&lt;with-index&gt;`)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>J</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Access the parent loop index for the current loop. (For loops made using `times&lt;with-index&gt;`)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>K</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Access the grandparent loop index for the current loop. (For loops made using `times&lt;with-index&gt;`)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>NoEcho</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. If TRUE, allow display of the "ok" prompt and startup banner.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>RewriteUnderscores</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. When set to `TRUE`, RETRO will replace underscores in strings with spaces. When `FALSE`, RETRO does not.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>STRINGS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the address of the start of the temporary string pool. This can be altered by changing the values of `TempStrings` and `TempStringMax`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>ScopeList</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. This holds some information used by `{{` and `}}`.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>TIB</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Returns a pointer to the text input buffer.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>TRUE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Returns `-1`, the value used to indicate a TRUE result.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>TempStringMax</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. Holds the maximum length of a temporary string.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>TempStrings</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. Holds the number of temporary strings.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>Version</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Variable. This stores the version number.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>[</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Begin a quotation.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>]</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>End a quotation.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:-eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare all values in the array. Return `FALSE` if all values are equal or `TRUE` otherwise. This assumes the array contains only numeric values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:append</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array consisting of the values in a1 followed by the values in a2.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:begins-with?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if a1 begins with a2 or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:chop</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array containing all but the last value in the source array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:contains-string?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sa-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if the string value is in the array or`FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:contains?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> na-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if the value is in the array or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:copy</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Copy an array (a1) to a destination (a2).</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:counted-results</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run a quote and construct a new array from the returned values. The quote should return the values and the number of values to put into the array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:dup</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-b<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Make a copy of an array. Return the address of the copy.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:ends-with?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if a1 ends with a2 or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare all values in the array. Return `TRUE` if all values are equal or `FALSE` otherwise. This assumes the array contains only numeric values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:fetch</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fetch the value stored at the specified index in the specified array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> { #0 #1 #3 } #2 a:fetch</xmp>
</p>
<hr/>
<h2>a:filter</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aq-b<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>For each item in the initial array, run the specified quote. If the quote returns `TRUE`, copy the item into a new array. If `FALSE`, discard it. Returns a pointer to the new array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:for-each</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quote once for each item in the array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:from-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a new array with the characters in the source string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:index-of</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the location of the first instance of the specified value in the array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:left</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array containing the first `n` values from the source array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:length</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the length of a array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:make</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute quote. Return a new array containing the values the quote leaves on the stack. This is identical to doing `a:counted-results a:reverse`</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:map</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aq-b<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute quote once for each item in the array. Constructs a new array from the value returned by the quote.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:middle</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> afl-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Extract a new array from the middle of the specified array. This will take the values starting at `f` and extend to the `l` last value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:prepend</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array consisting of the values in a2 followed by the values in a1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:reduce</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> pnq-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Takes an array, a starting value, and a quote. This will apply the quote to each item in the array; the quote should consume two values and return one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:reverse</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-b<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Reverse the order of items in a array. This will return a new array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:right</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array containing the specified number of values from the right side of the array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:store</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> vna-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Store a value into the array at the specified index.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #3 { #0 #1 #2 } #1 a:store</xmp>
</p>
<hr/>
<h2>a:th</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-b<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the actual address of the `n`th item in the array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:to-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a new string from the provided array. This string will be stored in the temporal string buffers.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>again</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Close an unconditional loop. Branches back to the prior `repeat`.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>allot</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Allocate the specified number of cells from the `Heap`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'Buffer d:create #100 allot</xmp>
</p>
<hr/>
<h2>and</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Perform a bitwise AND operation between the two provided values.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>as{</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Begin an assembly section. Deprecated; will be removed in 2020.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>banner</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a welcome message on startup.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>bi</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> xqq-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute q1 against x, then execute q2 against a copy of x.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #100 [ #10 * ] [ #10 - ] bi</xmp>
</p>
<hr/>
<h2>bi*</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> xyqq-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute q1 against x and q2 against y.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 #20 [ #2 * ] [ #10 / ] bi*</xmp>
</p>
<hr/>
<h2>bi@</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> xyq-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute q against x, then execute q against y.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 #20 [ #3 * ] bi@</xmp>
</p>
<hr/>
<h2>buffer:add</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Append a value to the current buffer.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:empty</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Reset the current buffer to an empty state.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:end</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a pointer to the current end of the active buffer.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:get</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Remove the last value from the current buffer.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:preserve</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Save and restore the current buffer before and after executing the specified quote.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:set</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Assign a new buffer as the current one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:size</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of cells in the buffer.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>buffer:start</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the start address of the current buffer.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>buffer</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>bye</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Exit RETRO.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>c:-consonant?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is a not consonant or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:-digit?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is a not numeric digit or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:-lowercase?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is not lowercase or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:-uppercase?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is not uppercase or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:-visible?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is not printable or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:-vowel?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is not a vowel or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:-whitespace?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is not whitespace, or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:consonant?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is a consonant or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:digit?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is a numeric digit or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:get</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Read a single keypress.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>c:letter?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is an ASCII letter or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:lowercase?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is lowercase or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:put</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a single character.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:to-lower</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert character to lowercase equivalent.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:to-number</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert an ASCII digit character into the corresponding decimal value</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:to-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert character into a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:to-upper</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert character to uppercase equivalent.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:toggle-case</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert an ASCII character to the opposite case.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:uppercase?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is uppercase or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:visible?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is printable or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:vowel?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is a vowel or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>c:whitespace?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> c-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if character is whitespace, or FALSE otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>c</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>call</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Call a function.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>case</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nmq- || nmq-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>If `n` is equal to `m`, drop both and execute the specified quote before exiting the calling word. If not equal, leave `n` on the stack and let execution continue.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>choose</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> fqq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute q1 if the flag is true (-1) or q2 if the flag is false (0). Only these flags are valid when using `choose`; passing other values as flags will result in memory corruption.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>class:data</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n- || n-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Class handler for data structures.</p>
<p>Interpret Time:
Keep the address or value on the stack.</p>
<p>Compile Time:
Compile the value or address as a literal into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>class</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>class:macro</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Class handler for compiler macros (immediate words)</p>
<p>Interpret Time:
Execute the function at the provided address.</p>
<p>Compile Time:
Execute the function at the provided address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>class</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>class:primitive</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Class handler for primitive words (words which map to Nga instructions)</p>
<p>Interpret Time:
Execute the function.</p>
<p>Compile Time:
Compile the machine code in the definiton into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>class</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>class:word</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Class handler for normal words.</p>
<p>Interpret Time:
Execute the function at the provided address.</p>
<p>Compile Time:
Compile a call to the specified address into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>class</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>clear</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Clear the display.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>clock:day</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current day.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:hour</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current hour. This will be in the range of 0-23, inclusive.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:minute</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current minute. This will be in the range of 0-59, inclusive.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:month</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current month. This will be in the range of 1-12, inclusive.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:second</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current second. This will be in the range of 0-59, inclusive.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:timestamp</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a host specific timestamp. In the standard system, this is a 32-bit Unix timestamp, but this is not required.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>clock:utc:day</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current day in UTC.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:utc:hour</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current hour in UTC.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:utc:minute</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current minute in UTC.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:utc:month</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current month in UTC.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:utc:second</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current second in UTC.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:utc:year</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current year in UTC.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>clock:year</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current year.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>clock</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS, rre</td></tr></table><hr/>
<h2>compile:call</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compile a call to the specified address into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>compile</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>compile:jump</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compile a jump to the specified address into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>compile</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>compile:lit</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compile the code to push a number to the stack into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>compile</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>compile:ret</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compile a return instruction into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>compile</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>compiling?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if compiler is on or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>const</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ns-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a constant returning the specified value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>copy</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sdl-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Copy `l` cells from memory at `s` to the memory at `d`. These should not overlap.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>curry</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nq-q<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Bind a value to a function and return a new quote that calls the bound action.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Inline a numeric value to the current assembly segment.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:add-header</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> saa-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a header. Provide a string (s) for the name, a pointer to the class handler (a1) and a pointer to the word definition (a2) Generally this won't be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:class</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> d-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a dictionary header, return the class field.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:create</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a new dictionary header named the specified string. The new header will point to `here` and have a class of `class:data`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:for-each</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the specified quote once for each header in the dictionary. Before running the quote, this also pushes a pointer to the header onto the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:last</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -d<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the most recent dictionary header.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:last&lt;class&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a pointer to the class field of the most recent dictionary header.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:last&lt;name&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a pointer to the name field of the most recent dictionary header.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:last&lt;xt&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a pointer to the xt field of the most recent dictionary header.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:link</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> d-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a dictionary header, return the link field.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:lookup</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-d<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Lookup the specified name in the dictionary and return a pointer to its dictionary header. This returns zero if the word is not found.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:lookup-xt</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-d<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Lookup the specified address in the dictionary and return a pointer to its dictionary header. This returns zero if the word is not found.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:name</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> d-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a dictionary header, return the name field.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>d:words</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a list of all named items in the `Dictionary`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>d:words-beginning-with</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a list of all named items in the `Dictionary` that begin with the provided substring.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>d:words-with</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a list of all named items in the `Dictionary` that contain the provided substring.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>d:xt</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> d-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a dictionary header, return the xt field.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>d</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>data</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Change the class of the most recently defined word to `class:data`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>depth</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of items on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>dip</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nq-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Temporarily remove n from the stack, execute the quotation, and then restore n to the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>does</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Attach an action to the most recently created word. This is used in a manner similar to CREATE/DOES&gt; in traditional Forth.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>drop</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Discard the top value on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>drop-pair</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Remove top two items on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>dump-stack</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display the items on the data stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>dup</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Duplicate the top item on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>dup-pair</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-nmnm<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Duplicate the top two items on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>e:-INF</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -e<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Negative infinity. For encoded floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:-inf?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Is encoded value negative infinity?</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:INF</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -e<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Infinity. For encoded floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:MAX</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -e<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Maximum value. For encoded floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:MIN</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -e<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Minimum value. For encoded floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:NAN</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -e<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Not a Number. For encoded floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:clip</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-E<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constrain the encoded value to the allowable range.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:inf?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Is encoded value infinity?</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:max?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Is encoded value at the maximum?</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:min?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Is encoded value at the minimum?</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:n?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if the encoded value is a valid number, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:nan?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Is encoded value a Nan?</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:put</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display an encoded number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:to-f</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -n</p>
</div>
<p>Decode an encoded floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>e:zero?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> e-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if the value is zero, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>e</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare two values for equality. Returns `TRUE` if they are equal or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #1 #2 eq?
$a $b eq?</xmp>
</p>
<hr/>
<h2>err:notfound</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Error handler. Called when a word is not found by `interpret`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>err</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>f:*</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-F</p>
</div>
<p>Multiply two floating point numbers, returning the result.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .3.1415 .22 f:*</xmp>
</p>
<hr/>
<h2>f:+</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-F</p>
</div>
<p>Add two floating point numbers, returning the result.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .3.1 .22 f:+</xmp>
</p>
<hr/>
<h2>f:-</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-F</p>
</div>
<p>Subtract F2 from F1 returing the result.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .22.3 .0.12 f:-</xmp>
</p>
<hr/>
<h2>f:-INF</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -n</p>
</div>
<p>Return a value corresponding to negative infinity</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:-eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-</p>
</div>
<p>Compare two floating point values for inequality. Returns `TRUE` if they are not equal or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:-inf?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Return `TRUE` if floating point value is -INF or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:/</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-F</p>
</div>
<p>Divide floating point value F1 by F2.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:E</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -F</p>
</div>
<p>Return the floating point value for Euler's number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:E1</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -f</p>
</div>
<p>Hook. Return a constant used as the scaling factor for the e: words.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:INF</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -n</p>
</div>
<p>Return a value corresponding to positive infinity</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:NAN</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -n</p>
</div>
<p>Return a value corresponding to NaN</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:PI</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -F</p>
</div>
<p>Return the floating point value for PI.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:abs</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the absolute value for a floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:acos</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the arc cosine of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:adepth</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of items on the alternate floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:asin</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the arc sine of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:atan</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the arc tangent of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:between?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> nlu-</p>
</div>
<p>Return TRUE if number is between the lower (l) and upper (u) bounds. If not, return FALSE. This is inclusive of the limits.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .3 .1 .100 f:between?
.100 .200 .300 f:between?</xmp>
</p>
<hr/>
<h2>f:case</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> nm-n</p>
</div>
<p>If `n` is equal to `m`, drop both and execute the specified quote before exiting the calling word. If not equal, leave `n` on the stack and let execution continue.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:ceiling</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the smallest integral value greater than or equal to the specified value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:cos</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the cosine of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:dec</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> n-m</p>
</div>
<p>Decrement n by one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .100 f:dec</xmp>
</p>
<hr/>
<h2>f:depth</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of items on the floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:drop</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Discard the top item on the floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:drop-pair</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-</p>
</div>
<p>Remove top two items on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:dump-astack</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display the items on the alternate floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:dump-stack</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display the items on the floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:dup</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-FF</p>
</div>
<p>Duplicate the top item on the floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:dup-pair</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> nm-nmnm</p>
</div>
<p>Duplicate the top two items on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-</p>
</div>
<p>Compare two floating point values for equality. Returns `TRUE` if they are equal or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:fetch</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -n</p>
</div>
<p>Fetch a stored floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:floor</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Perform a mathmatical floor operation on the floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:gt?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-</p>
</div>
<p>Compare two floating point values for greater than.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:inc</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> n-m</p>
</div>
<p>Increment n by one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .100 f:inc</xmp>
</p>
<hr/>
<h2>f:inf?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Return `TRUE` if floating point value is INF or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:limit</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> nlu-m</p>
</div>
<p>Return n if it is within the lower (l) and upper (u) bounds. If outside the bounds, return the closes boundary value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .-10 .5 .8 f:limit
.10 .1 .15 f:limit</xmp>
</p>
<hr/>
<h2>f:log</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-F</p>
</div>
<p>Return log(F1) for base F2 for floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:lt?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-</p>
</div>
<p>Compare two floating point values for less than.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:max</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> mn-o</p>
</div>
<p>Return the greater of two values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .1 .7 f:max
.-8 .-10 f:max</xmp>
</p>
<hr/>
<h2>f:min</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> mn-o</p>
</div>
<p>Return the lesser of two values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .1 .7 f:min
.-8 .-10 f:min</xmp>
</p>
<hr/>
<h2>f:nan?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Return `TRUE` if floating point value is NaN or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:negate</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Invert the sign of the floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .3.1415 f:negate</xmp>
</p>
<hr/>
<h2>f:negative?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Return `TRUE` if floating point value is negative or `FALSE` if not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:nip</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> NM-M</p>
</div>
<p>Remove the second item from the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:over</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FG-FGF</p>
</div>
<p>Put a copy of the second floating point value over the top one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:pop</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -F</p>
</div>
<p>Pop a floating point value from the alternate stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:positive?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -f<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Return `TRUE` if floating point value is positive or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:power</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FF-F</p>
</div>
<p>Return F1^F2 for floating point values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:push</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Push a floating point value to an alternative stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:put</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Display a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:rot</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> abc-bca</p>
</div>
<p>Rotate the top three values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:round</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> f-f</p>
</div>
<p>Round a floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:sign</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Return 1 if the floating point value is positive or -1 if it is negative.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> .3.1415 f:sign</xmp>
</p>
<hr/>
<h2>f:signed-sqrt</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the square root of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:signed-square</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> f-f</p>
</div>
<p>Return the square of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:sin</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the sine of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:sqrt</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the square root of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:square</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> f-f</p>
</div>
<p>Return the square of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:store</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> n-</p>
</div>
<p>Store a floating point value to the specified memory location.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:swap</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FG-GF</p>
</div>
<p>Exchange the top and second items on the floating point stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:tan</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-F</p>
</div>
<p>Return the tangent of a floating point number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:to-e</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -e<br>
<b>Addr:</b> -<br>
<b>Float:</b> n-</p>
</div>
<p>Encode the floating point value to an integer.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:to-number</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Convert a floating point value into a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:to-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> F-</p>
</div>
<p>Convert a floating point value into a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>f:tuck</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> FG-GFG</p>
</div>
<p>Tuck a copy of the top floating point value under the second one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>f</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>fetch</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fetch the value stored at the specified address.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> &Version fetch</xmp>
</p>
<hr/>
<h2>fetch-next</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-an<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fetch the value stored at the specified address. Returns the next address and the value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>file:A</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant for opening a file in APPEND mode.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:R</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant for opening a file in READ mode.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:R+</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant for opening a file in READ &amp; WRITE mode.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:W</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant for opening a file in WRITE mode.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:close</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> h-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file handle, close the file.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:delete</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Delete the named file.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:exists?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file name, return `TRUE` if it exists or `FALSE` if it does not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:flush</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> h-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file handle, flush any pending writes to disk.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:for-each-line</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file name, open it and run the quote once for each line in the file.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:open</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sm-h<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Open a named file (s) with the given mode (m). Returns a handle identifying the file.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> '/etc/motd file:R file:open</xmp>
</p>
<hr/>
<h2>file:open&lt;for-append&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Open a file for reading &amp; writing. Returns the size (NOS) and a file ID (TOS)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:open&lt;for-reading&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Open a file for reading. Returns the size (NOS) and a file ID (TOS)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:open&lt;for-writing&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Open a file for writing. Returns the file ID</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:read</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> h-c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file handle, read and return the next character in it.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:read-line</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> f-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file handle, read a line and return a pointer to it.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:seek</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nh-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Move the current offset into a file to the specified one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:size</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> h-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file handle, return the size of the file (in bytes).</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:slurp</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> as-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given an address and a file name, read the file contents into memory starting at the address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:spew</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a string (s1) and a file name (s2), write the string into the file, replacing any existing cotent.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:tell</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> h-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given a file handle, return the current offset in the file.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>file:write</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ch-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Write a character to the file represented by the handle.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>file</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>gopher:get</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> asns-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Takes an address, a server, a port, and a selector. Fetch the resource and store it at address. Return the number of bytes received.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>gopher</td></tr><tr><td><b>Interface Layer:</b> </td><td>ios</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> here 'forthworks.com #70 '/ gopher:get
here s:put</xmp>
</p>
<hr/>
<h2>gt?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare n1 and n2. Return `TRUE` if n1 is greater than n2, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>gteq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare n1 and n2. Return `TRUE` if n1 is greater than or equal to n2, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>here</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the next free address in memory.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>hook</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Add a hook point into the current word. This should only be used as the first word in a definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>global</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> :foo hook ;</xmp>
</p>
<hr/>
<h2>i</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Assemble the instructions specified by the string into the current assembly scope.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>if</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> fq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quote if the flag is `TRUE`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>if;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> fq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quotation if the flag is `TRUE`. If true, also exit the word.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>image:save</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Save the current system to a new image file.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>image</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>immediate</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Change the class of the most recently defined word to `class:macro`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>include</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run the code in the specified file. </p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>interpret</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Interpret a single input token.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> '#100 interpret
'words interpret</xmp>
</p>
<hr/>
<h2>io:clock-operation</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trigger a clock operation. This is not intended to be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>io:enumerate</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of I/O devices.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>io:file-operation</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trigger a file I/O operation. This is not intended to be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>io:float-operation</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trigger a floating point operation. This is not intended to be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>io:invoke</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Invoke an interaction with an I/O device.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>io:query</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-mN<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Ask an I/O device to identify itself. Returns a version (m) and device ID (N).</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>io:rng-operation</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trigger a rng operation. This is not intended to be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>io:scan-for</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Scan the I/O devices for a device with a specified ID. Returns the device number, or -1 if not found.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>io:socket-operation</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trigger a socket operation. This is not intended to be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>io:unix-syscall</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trigger a Unix system call. This is not intended to be used directly.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>io</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>listen</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run interactive "listener" (a REPL).</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>lt?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare n1 and n2. Return `TRUE` if n1 is less than n2, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>lteq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare n1 and n2. Return `TRUE` if n1 is less than or equal to n2, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>mod</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Divide `n` by `m` and return the remainder.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:-zero?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if number is not zero, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:MAX</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the maximum value that will fit in a cell.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:MIN</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the minimum value that will fit in a cell.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:abs</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the absolute value of a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 n:abs
#-10 n:abs
</xmp>
</p>
<hr/>
<h2>n:between?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nlu-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if number is between the lower (l) and upper (u) bounds. If not, return FALSE. This is inclusive of the limits.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #3 #1 #100 n:between?
$q $a $b n:between?</xmp>
</p>
<hr/>
<h2>n:dec</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Decrement n by one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #100 n:dec</xmp>
</p>
<hr/>
<h2>n:even?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if number is even, or `FALSE` if not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #12 n:even?
#11 n:even?</xmp>
</p>
<hr/>
<h2>n:inc</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Increment n by one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #100 n:inc</xmp>
</p>
<hr/>
<h2>n:limit</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nlu-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return n if it is within the lower (l) and upper (u) bounds. If outside the bounds, return the closes boundary value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #-10 #5 #8 n:limit
#10 #1 #15 n:limit</xmp>
</p>
<hr/>
<h2>n:max</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> mn-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the greater of two values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #1 #7 n:max
#-8 #-10 n:max</xmp>
</p>
<hr/>
<h2>n:min</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> mn-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the lesser of two values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #1 #7 n:min
#-8 #-10 n:min</xmp>
</p>
<hr/>
<h2>n:negate</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Invert the sign of a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 n:negate
#-10 n:negate</xmp>
</p>
<hr/>
<h2>n:negative?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if number is negative, or `FALSE` if not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:odd?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if number is odd, or `FALSE` if not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:positive?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if number is positive, or `FALSE` if not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:pow</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> bp-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return base (b) to power (p).</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:put</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:random</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a random number</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> n:random n:put</xmp>
</p>
<hr/>
<h2>n:sqrt</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the square root of a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:square</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the square of a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:strictly-positive?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return TRUE if number is greater than zero or FALSE if it is zero or less.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:to-float</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -F</p>
</div>
<p>Convert a number into a floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>n:to-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert a number into a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>n:zero?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if number is zero, or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>n</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>nip</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Remove the second item from the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>nl</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a newline.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>not</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-m<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Perform a logical NOT operation.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>or</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> mn-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Perform a bitwise OR between the provided values.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>over</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-nmn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Put a copy of n over m.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>parse-until</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Read input from stdin (via `c:get`) until the returned character is matched by the quote. Returns a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>all</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> :read-until-period (-s)
[ $. eq? ] parse-until ;</xmp>
</p>
<hr/>
<h2>pb:get</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Copy a string from the pasteboard to the specified address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>pb</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS</td></tr></table><hr/>
<h2>pb:length</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the length of the string on the pasteboard.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>pb</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'>pb</xmp>
</p>
<hr/>
<h2>pb:set</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Copy a string to the pasteboard.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>pb</td></tr><tr><td><b>Interface Layer:</b> </td><td>iOS</td></tr></table><hr/>
<h2>pop</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> n-<br>
<b>Float:</b> -</p>
</div>
<p>Move a value from the return stack to the data stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:!</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ns-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Store a value into a variable.</p>
<p>Interpret Time:
Store a value into the named variable.</p>
<p>Compile Time:
Compile the code to store a value into a named variable.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:"</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a string.</p>
<p>Interpret Time:
Keep string as permanent. If `RewriteUnderscores` is `TRUE`, replace all instances of _ with space.</p>
<p>Compile Time:
Keep string as permanent. If `RewriteUnderscores` is `TRUE`, replace all instances of _ with space. Then compile the string into the current definition. Deprecated.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:#</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a number.</p>
<p>Interpret Time:
Convert the string into a number and leave on the stack.</p>
<p>Compile Time:
Convert the string into a number and compile into the current definition as a literal.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:$</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-c<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as an ASCII character.</p>
<p>Interpret Time:
Fetch first character from string. Leave on stack.</p>
<p>Compile Time:
Fetch first character from the string. Compile into the current definition as literal.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:&amp;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a pointer to a named item.</p>
<p>Interpret Time:
Lookup name in dictionary, return contents of the xt field on the stack.</p>
<p>Compile Time:
Lookup name in dictionary, compile code to push the contents of the xt field into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:'</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a string.</p>
<p>Interpret Time:
Move string into temporary buffer. If `RewriteUnderscores` is `TRUE`, replace all instances of _ with space.</p>
<p>Compile Time:
Move string into temporary buffer. If `RewriteUnderscores` is `TRUE`, replace all instances of _ with space. Then compile the string into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:(</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a comment.</p>
<p>Interpret Time:
Discard the string.</p>
<p>Compile Time:
Discard the string.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:.</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -F</p>
</div>
<p>Interpret time: convert string to a floating point value. Compile time: convert string to a floating point value and compile code to push this value to the float stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>prefix::</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a new definition.</p>
<p>Interpret Time:
Create a header pointing to `here` with the provided string as the name. Sets class to `class:word`.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:@</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fetch from a stored variable.</p>
<p>Interpret Time:
Fetch a value from a named variable.</p>
<p>Compile Time:
Compile the code to fetch a value from a named variable into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:\</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as an instruction bundle.</p>
<p>Interpret Time:
Discard the string.</p>
<p>Compile Time:
Assemble the opcodes in the string and use `,` to inline it into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:^</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a function reference.</p>
<p>Interpret Time:
Discard the string.</p>
<p>Compile Time:
Comma the XT of the word into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:`</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Process token as a bytecode.</p>
<p>Interpret Time:
Discard the string.</p>
<p>Compile Time:
Convert the string to a number and use `,` to inline it into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>prefix:|</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>POSTPONE equivalent.</p>
<p>Interpret Time:
Discard the string.</p>
<p>Compile Time:
Convert the string to a number and use `,` to inline it into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>prefix</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>primitive</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Change the class of the most recently defined word to `class:primitive`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>push</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -n<br>
<b>Float:</b> -</p>
</div>
<p>Move a value from the data stack to the return stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>r</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Lookup a reference by name and inline its pointer to the current assembly segment.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>reclass</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Change the class handler of the most recently defined word to the specified one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>reorder</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...ss-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Restructure the order of items on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>repeat</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Begin an unconditional loop.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>reset</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Remove all items from the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>rot</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> abc-bca<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Rotate the top three values.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s,</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compile the code needed to push a string pointer to the stack and inline the string data into the current definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:ASCII-LETTERS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Returns a string of the ASCII letters (upper and lower case)</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:ASCII-LOWERCASE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Returns a string of the ASCII letters in lowercase</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:ASCII-UPPERCASE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Returns a string of the ASCII letters in uppercase</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:DIGITS</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Return a string of characters recognized as numeric digits.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:PUNCTUATION</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Return a string of characters recognized as punctuation.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:WHITESPACE</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Constant. Returns a string of characters recognized as whitespace.</p>
<table><tr><td><b>Class:</b> </td><td>class:data</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:append</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new string consisting of s1 followed by s2.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:begins-with?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if s1 begins with s2 or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:case</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sSq- || sSq-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>If the `s` matches `S`, discard `s` and run the quote before exiting the caller. If they do not match, discard the quote and leave `s` on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:chop</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Remove the last character from a string. Returns a new string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:const</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a constant named s2, returning a pointer to s1. This will use `s:keep` to preserve the original string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:contains-char?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sc-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if the character is present in the string or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:contains-string?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if the second string is present in the first string or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:copy</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sa-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Copy a string (s) to a destination (a). This will include the terminator character when copying.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:empty</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return an empty string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:ends-with?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return `TRUE` if s1 ends with s2 or `FALSE` otherwise.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:eq?</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-f<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Compare two strings for equality. Return `TRUE` if identical or `FALSE` if not.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'hello 'again s:eq?
'test 'test s:eq?</xmp>
</p>
<hr/>
<h2>s:evaluate</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Evaluate string as if it was typed into the interpreter.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:filter</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sq-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quote once for each value in the string. If the quote returns `TRUE`, append the value into a new string. If `FALSE` the value will be discarded.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:for-each</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the quote once for each value in the string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:format</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ...s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Construct a new string using the template passed and items from the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:get</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Read input from standard in (via `c:get`) until a CR or LF is encountered. Returns a strig.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>all</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>s:get-word</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Read input from standard in (via `c:get`) until a whitespace is encountered. Returns a strig.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>all</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>s:hash</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Calculate a hash value for a string. This uses the djb2 algorithm.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:index-of</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sc-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the location of the first instance of the specified character in the string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:index-of-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the location of the first instance of the specified substring (s2) in the string (s1). Returns -1 if not found.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:keep</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Store a string into the heap and return a pointer to the start of it.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:left</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sn-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new string containing the first `n` characters from the source string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:length</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of characters in a string, excluding the NULL terminator.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:map</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sq-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute the specified quote once for each character in the string. Builds a new string from the return value of the quote. The quote should return only one value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:prepend</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new string consisting of s2 followed by s1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:put</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:replace</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sss-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Replace the first instance of s2 in s1 with s3.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:replace-all</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sss-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Replace all instances of s2 in s1 with s3.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:reverse</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Reverse the order of ASCII characters in a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:right</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sn-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new string containing the specified number of characters from the right side of the string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:skip</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Internal helper function used to skip over a string in a definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:split</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sc-ss<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Split a string on the first occurrance of the specified character.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:split-on-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-ss<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl</xmp>
</p>
<hr/>
<h2>s:substr</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sfl-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Extract a substring from the specified string. This will take the characters starting at `f` and extend `l` characters in length.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:temp</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Move a string into the temporary string buffers.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:to-float</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -F</p>
</div>
<p>Convert a string representation into a floating point value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>s:to-lower</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert uppercase ASCII characters in a string to lowercase.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:to-number</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert a string to a number.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:to-upper</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Convert lowercase ASCII characters in a string to uppercase.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:tokenize</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sc-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Takes a string and a character to use as a separator. It splits the string into substrings and returns an array containing pointers to each of them.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:tokenize-on-string</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Takes a string (s1) and a substring (s2) use as a separator. It splits the string into substrings and returns as array containing pointers to each of them.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>s:trim</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trim leading and trailing whitespace from a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> '__hello__ s:trim</xmp>
</p>
<hr/>
<h2>s:trim-left</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trim leading whitespace from a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> '__hello__ s:trim-left</xmp>
</p>
<hr/>
<h2>s:trim-right</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Trim trailing whitespace from a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> '__hello__ s:trim-right</xmp>
</p>
<hr/>
<h2>set-hook</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aa-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Patch the hook point in a2 to point to a1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> :foo hook ;
:bar #1 ;
&bar &foo set-hook</xmp>
</p>
<hr/>
<h2>shift</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> mn-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Peform a bitwise shift of m by n bits. If n is positive, shift right. If negative, the shift will be to the left.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>sip</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nq-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run quote. After execution completes, put a copy of n back on top of the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>socket:accept</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Begin accepting connections. Returns a new socket and an error code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:bind</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sn-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Bind a socket to a port. The port should be a string. Returns 0 if successful or -1 othewise and an error code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:close</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Close a socket.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:configure</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Configure internal settings for a host (s1) and port (s2). Use before `socket:bind`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:connect</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Connect to a server. Provide a socket, this will return a status flag and an error code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:create</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Obtain a new socket.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:gethostbyname</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> as-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Get the host IP in dotted notation. The host is specified by the string and the address is the start of the buffer for the dotted IP.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:listen</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Prepare a socket for accepting incoming quotations. Takes a backlog count (n1) and a socket (n2). Returns a flag (0 success, -1 failed) and an error code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:recv</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ann-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Receive data from a socket. This will read into memory starting at address *a*, up to *n1* bytes. *n2* is the socket. Returns the number of bytes read and an error code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>socket:send</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sn-nn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Send a string to a socket. This will return the number of characters sent and an error code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>socket</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>sp</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a space (`ASCII:SPACE`)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> :spaces (n-) [ sp ] times ;
#12 spaces</xmp>
</p>
<hr/>
<h2>store</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> na-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Store a value into the specified address.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'Base var
#10 &Base store</xmp>
</p>
<hr/>
<h2>store-next</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> na-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Store a value into the specified address and return the next address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>swap</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-mn<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Exchange the position of the top two items on the stack</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>sys:argc</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of arguments passed to the program.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>sys</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>sys:argv</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Given an argument number, return the argument as a string.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>sys</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>sys:name</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the filename of the program being run.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>sys</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>tab</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Display a tab (`ASCII:HT`)</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>times</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run the specified quote the specified number of times.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #12 [ $- c:put ] times</xmp>
</p>
<hr/>
<h2>times&lt;with-index&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run a quote the specified number of times, tracking the loop index in `I`. This is less efficient than `times`, so if the index is not needed, this should be avoided.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>tri</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> xqqq-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Apply q1 against x, then q2 against a copy of x, and finally q3 against another copy of x.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>tri*</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> xyzqqq-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Apply q1 against x, q2 against y, and q3 against z.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>tri@</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> xyzq-?<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Apply q against x, then against y, and finally against z.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>tuck</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nm-mnm<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Put a copy of the top item on the stack under the second one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>unhook</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Reset the hook point in a1 to the default definition.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> :foo hook #1 ;
:bar #2 ;
&bar &foo set-hook
&foo unhook</xmp>
</p>
<hr/>
<h2>unix:chdir</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Change the current working directory to the specified one.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> '/etc unix:chdir</xmp>
</p>
<hr/>
<h2>unix:count-files-in-cwd</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the number of files (and subdirectories) in the current working directory</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:exec0</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute a process by running the application specified by s.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:exec1</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ss-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute a process by running the application specified by s1. Pass s2 as an argument.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:exec2</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sss-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute a process by running the application specified by s1. Pass s2 and s3 as arguments.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:exec3</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ssss-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute a process by running the application specified by s1. Pass s2, s3, and s4 as arguments.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:exit</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Exit the current process, returning the specified return code.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:for-each-file</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Run a quote once for each file or subdirectory in the current directory. The quote will receive the file name as a string and should consume this and return nothing on the stack.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:fork</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fork the current process. Returns a PID.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:get-cwd</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -s<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the current working directory</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:getenv</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sa-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Get an environment variable. Provide the name and an address to store it in.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'SHELL s:empty [ unix:getenv ] sip s:put nl</xmp>
</p>
<hr/>
<h2>unix:getpid</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the PID of the current process.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:kill</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> nn-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Terminates a process. Takes a process and a signal to send.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:pclose</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Close a pipe.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:popen</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> sn-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Open a pipe. Takes a command to run, and a file mode (`file:R` or `file:W`; `file:R+` may work on some systems). Returns a file ID usable with words in the `file:` namespace.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:putenv</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Takes a string in the form `name=value` and sets an environment variable named `name` to `value`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'EDITOR=vi unix:putenv</xmp>
</p>
<hr/>
<h2>unix:sleep</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> n-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Sleep for the specified number of seconds.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:slurp-pipe</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> as-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Open a pipe. Read all output from the pipe (until ASCII:NULL) and store in the specified buffer. Return the number of bytes read.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>unix:system</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Runs another application using the system shell and returns after execution is completed.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'ls_-lh_/etc unix:system</xmp>
</p>
<hr/>
<h2>unix:wait</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Waits for a child process to complete. This maps to the wait() system call.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>unix</td></tr><tr><td><b>Interface Layer:</b> </td><td>rre</td></tr></table><hr/>
<h2>until</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute quote repeatedly while the quote returns a value of `FALSE`. The quote should return a flag of either `TRUE` or `FALSE`, though `until` will treat any non-zero value as `TRUE`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 [ dup n:put nl n:dec dup n:zero? ] until</xmp>
</p>
<hr/>
<h2>v:dec</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Decrement the value stored at the specified address by 1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:dec-by</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> na-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Decrement the value stored at the specified address by the specified value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:inc</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Increment the value stored at the specified address by 1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:inc-by</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> na-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Increment the value stored at the specified address by the specified value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:limit</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> alu-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fetch the value stored at the address, then run `n:limit` against it, using the specified lower and upper bounds. Then store the resulting value back to the original address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:off</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Set a variable to 0.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:on</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Set a variable to -1.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:preserve</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Make a copy of the value at the address, then run the quote. Once the quote completes, restore the address to the specified value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>v:update</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> aq-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Fetch a value from the specified address, then run the quotation with this value on the stack. Afterwards, store the returned value at the original address.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>v</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>var</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> s-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a variable. The variable is initialized to 0.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> 'Base var</xmp>
</p>
<hr/>
<h2>var&lt;n&gt;</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> ns-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Create a variable with the specified initial value.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 'Base var<n>
</xmp>
</p>
<hr/>
<h2>while</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> q-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Execute quote repeatedly while the quote returns a `TRUE` value. The quote should return a flag of either `TRUE` or `FALSE`, though `while` will treat any non-zero value as `TRUE`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
<br>
<xmp style='background:#222'> #10 [ dup n:put nl n:dec dup n:-zero? ] while</xmp>
</p>
<hr/>
<h2>xor</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> mn-o<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Perform a bitwise XOR operation.</p>
<table><tr><td><b>Class:</b> </td><td>class:primitive</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>{</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Begin an array. This is intended to make creating arrays a bit cleaner than using a quotation and `a:counted-results`.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>{{</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Begin a lexically scoped area.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>}</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Complete an array begun by `{`. Returns a pointer to the data.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>}as</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> f-<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>End an assembly section. Deprecated; will be removed in 2020.</p>
<table><tr><td><b>Class:</b> </td><td>class:macro</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>}}</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> -<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>End a lexically scoped area. This will hide any headers between `{{` and `---reveal---`, leaving only headers between `---reveal---` and the `}}` visible.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>global</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>