Reputation: 589
With writing a new program of mine, I see some of my variables are appended with a .storage. Does that mean anything specific for that type of variable?
Upvotes: 1
Views: 98
Reputation: 36441
That corresponds to the memory area referenced by your variable. The type is the type inferred by inspection, and the value is the memory address written in hexadecimal basis.
Upvotes: 1