Open
Description
Currently returns values are set using ^(ret_value) syntax. However @^ no longer is the universal way to access the return value as the architecture has changed to have self.return_stack. Proposed tokens to access the self.return_stack are:
- ^?
- ?^
- ^()
We also need a way to set the return value w/o executing a return.
- ^= "foo"
- ^=("foo")