When I\'m initializing an instance of an entity I\'m getting the error Variable used within its own initial value.
Variable used within its own initial value
Here is the code throwing the error:<
You are declaring a constant named word, and trying to use the argument with the same name to initialize it. The compiler tries to use the just declared constant to assign its own initial value, instead of using the argument.
word