How can i do this?
p\name$.player=new player
or
p\x#.player=new player
or
p\a.player=new player
Any suggestions?
p\name$.player=new player
or
p\x#.player=new player
or
p\a.player=new player
Any suggestions?
Type example Field n End Type Local e.example, middle.example For k = 1 To 5 e = New example e\n = k If k = 3 Then middle = e Next For e = Each example Print e\n Next Print : Print middle\n middle\n = 999 Print For e = Each example Print e\n Next WaitKey : End
Type player Field n Field a.player End Type For k = 1 To 4 t.player = New player t\n = k Next t = First player t\a = Last player Print t\a\n ; t is the first player, t\a points to the last player ; and t\a\n is the n value of t\a, which is 4. WaitKey : End