Chaosy
Tutorial Reviewer
- Joined
- Jun 9, 2011
- Messages
- 13,219
this turned out to be a ask things as they pop up thread so the most recent problem is located down at the comments and not here anymore.
I want to use the following: http://www.wc3c.net/showthread.php?t=103604
But I have issues figuring out how it works..
this prints 3,2,1 while I was expecting it to type 10,27,65 or 65,27,10
But I have issues figuring out how it works..
JASS:
function test takes nothing returns nothing
local List l = List.create()
set somelist = l
call Link.create(l, 10)
call Link.create(l, 27)
call Link.create(l, 65)
call BJDebugMsg(I2S(l.first))
call BJDebugMsg(I2S(l.first.next))
call BJDebugMsg(I2S(l.first.next.next))
endfunction
this prints 3,2,1 while I was expecting it to type 10,27,65 or 65,27,10
Last edited: