- Joined
- Oct 11, 2012
- Messages
- 711
Hey guys, this question is from a book:
The question is kinda confusing to me. Thanks in advance of the help.
JASS:
Assuming the following code:
a = {}; a.a. = a
What would be the value of a.a.a.a ? Is any a in that sequence somehow different from the others?
Now add the next line to the previous code:
a.a.a.a = 3
What would be the value of a.a.a.a now?
The question is kinda confusing to me. Thanks in advance of the help.