wldk

poka

Aug 9th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. local tArgs = { ... }
  2. local fload = tArgs[1]
  3. local lines = io.lines( fload )
  4. print("PLIK: " .. fload )
  5. for line in lines do
  6.  
  7.     -- Print each line pulled from the file...
  8.     print( line )
  9.  
  10. end
  11.  
  12. print()
Advertisement
Add Comment
Please, Sign In to add comment