Skip to content

Instantly share code, notes, and snippets.

@kazupon
Created September 27, 2012 15:39
Show Gist options
  • Save kazupon/3794698 to your computer and use it in GitHub Desktop.
Save kazupon/3794698 to your computer and use it in GitHub Desktop.
local fs = lev.fs
local co = _coroutine
t1 = co.create(function (...)
p(t1)
local err1, fd1 = fs.open('AUTHORS', 'r', '0666')
fs.close(fd1)
lev.exit()
end)
co.resume(t1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment