[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Read text file and iterate through items?
- From: Gilles Ganault <gilles.ganault@...>
- Date: Mon, 18 Apr 2011 19:07:44 +0200
On Mon, 18 Apr 2011 19:05:14 +0200, Jerome Vuarand
<jerome.vuarand@gmail.com> wrote:
>local libs = io.open("dynlibs.txt","r")
>for lib in libs:lines() do
> print(lib)
>end
>libs:close()
Thanks!