Pi: Difference between revisions

Content added Content deleted
m (→‎{{header|Quackery}}: made values immovable)
Line 4,321: Line 4,321:
{{trans|Oforth}}
{{trans|Oforth}}


Quackery does not have variables, it has ancillary stacks. To expedite translation from Oforth, the first two lines implement words equivalent to the [https://forth-standard.org/standard/core/VALUE Forth words VALUE and TO].
Quackery does not have variables, it has ancillary stacks. To expedite translation from Oforth, the first two definitions implement words equivalent to the [https://forth-standard.org/standard/core/VALUE Forth words VALUE and TO].
<lang Quackery> [ ]this[ share ]done[ ] is value ( --> x )
<lang Quackery> [ immovable
]this[ share ]done[ ] is value ( --> x )
[ ]'[ replace ] is to ( x --> )
[ ]'[ replace ] is to ( x --> )