Closed ErikSchierboom closed 6 months ago
During this exercise, I found that having a
constant
defined would cause the stack space check to fail.
Were you expecting the constant to exist on the stack?
I did not expect that, but maybe that's just how it works
According to the words list:
This is essentially syntactic sugar for the prior method of creating a new word containing the value
x
.
So I assume 42 constant answer
is the same as : answer 42 ;
During this exercise, I found that having a
constant
defined would cause the stack space check to fail.