Hi,

hope someone can point me into the right direction:

## Want to call this PROC and return a SEQUENCE of Tuples ...

proc Getmethefiles*(wo:string ): seq[tuple] {.exportpy.} =

> for item in walkDirRec(wo):
>     result.add splitFile(item)

COMPILE ERROR: cannot instantiate: 'result:type'

Ideally I wan to collect the tuples from "splitFile(item)" ... and return the 
collection when its done traversing the directory "wo"

Thanks in advance :)

Reply via email to