How do I say:
x = string.find(fil es, 'this', 'that', 'the-other')
currently I have to write it like this to make it work:
x = string.find(fil es, 'this')
y = string.find(fil es, 'that')
z = string.find(fil es, 'the-other')
x = string.find(fil es, 'this', 'that', 'the-other')
currently I have to write it like this to make it work:
x = string.find(fil es, 'this')
y = string.find(fil es, 'that')
z = string.find(fil es, 'the-other')
Comment