Line 12 - Syntax error in the procedure arguments.
Code: Select all
Procedure SearchDirectory(dir$,yourLinkedList.s(),pattern$="",recursive=1)Code: Select all
Procedure SearchDirectory(dir$,yourLinkedList.s(),pattern$="",recursive=1)Code: Select all
Newlist mylist.s()
Procedure Test(thislist.s())
EndProcedure
Test(mylist())Correct is:Inner wrote:Okay not so strange seams we can't at the moment pass list types in this way to procedures, although oddly this worked in betas.Code: Select all
Newlist mylist.s() Procedure Test(thislist.s()) EndProcedure Test(mylist())
ahh so it's been changedIceSoft wrote:Correct is:Inner wrote:Okay not so strange seams we can't at the moment pass list types in this way to procedures, although oddly this worked in betas.Code: Select all
Newlist mylist.s() Procedure Test(thislist.s()) EndProcedure Test(mylist())
Procedure Test(List thislist.s())