Closed aw closed 1 year ago
After some testing, it appears the STORE primitive is incorrect. Its definition:
STORE
# ! ( x addr -- ) Store x at addr
Is actually doing the opposite and trying to store addr at x.
addr
x
After some testing, it appears the
STORE
primitive is incorrect. Its definition:Is actually doing the opposite and trying to store
addr
atx
.