read_rawresource - Read a line from the globally shared raw resource
handle.
- 1
- Each "line" is constrained to a maximum of 4096 characters.
- 2
- Leading and trailing whitespace is removed.
function read_rawresource0()
zap_resource("test.txt");
open_rawresource("test.txt");
write_rawresource("linea");
close_rawresource();
open_rawresource("test.txt");
local line = read_rawresource();
close_rawresource();
if (line == "linea") then
warning("resource test OK");
else
warning("resource test failed");
end
end
open_rawresource(3) write_rawresource(3)
close_rawresource(3)