Guest User

Untitled

a guest
Jan 11th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.15 KB | None | 0 0
  1. local fileTable = {}
  2. file = io.open("fileName", "r")
  3. if file then
  4.     for line in file:lines() do
  5.         table.insert(fileTable, line)
  6.     end
  7. end
Add Comment
Please, Sign In to add comment