diff options
author | tomas <tomas> | 2004-10-29 16:15:59 +0000 |
---|---|---|
committer | tomas <tomas> | 2004-10-29 16:15:59 +0000 |
commit | f66af01eece2627f8dbeb37426f4040107ca073a (patch) | |
tree | b069287231bf3e116ff05315378266d8266499f1 /teste.lua | |
parent | 40db9dba61acbbdf8474c900c522fa6d0b556763 (diff) | |
download | luafilesystem-f66af01eece2627f8dbeb37426f4040107ca073a.tar.gz luafilesystem-f66af01eece2627f8dbeb37426f4040107ca073a.tar.bz2 luafilesystem-f66af01eece2627f8dbeb37426f4040107ca073a.zip |
Acrescimo de exemplo.
Acrescimo do logo.
Diffstat (limited to '')
-rw-r--r-- | teste.lua | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,24 +1,24 @@ | |||
1 | #!/usr/local/bin/lua -i | 1 | #!/usr/local/bin/lua -i |
2 | 2 | ||
3 | require"luafilesystem" | 3 | require"lfs" |
4 | 4 | ||
5 | print(luafilesystem.version) | 5 | print(lfs.version) |
6 | 6 | ||
7 | function p () | 7 | function p () |
8 | local fh = assert (io.open ("teste", 'r')) | 8 | local fh = assert (io.open ("teste", 'r')) |
9 | assert (luafilesystem.lock (fh, 'r')) | 9 | assert (lfs.lock (fh, 'r')) |
10 | print (fh:read"*a") | 10 | print (fh:read"*a") |
11 | fh:close () | 11 | fh:close () |
12 | end | 12 | end |
13 | 13 | ||
14 | function wr () | 14 | function wr () |
15 | fh = assert (io.open ("teste", 'w')) | 15 | fh = assert (io.open ("teste", 'w')) |
16 | assert (luafilesystem.lock (fh, 'w')) | 16 | assert (lfs.lock (fh, 'w')) |
17 | end | 17 | end |
18 | 18 | ||
19 | function op () | 19 | function op () |
20 | fh = assert (io.open ("teste", 'r')) | 20 | fh = assert (io.open ("teste", 'r')) |
21 | assert (luafilesystem.lock (fh, 'r')) | 21 | assert (lfs.lock (fh, 'r')) |
22 | end | 22 | end |
23 | 23 | ||
24 | function fw (x) | 24 | function fw (x) |