file_f=io.open("read_text.lua","r") while true do a_st=file_f:read() if not a_st then break end print(a_st) end file_f:close()