directory clean out

This commit is contained in:
steve donovan 2011-12-17 17:08:00 +02:00
parent 461fe4b711
commit 444a3d9ce3
1 changed files with 21 additions and 0 deletions

21
tests/annot/annot.lua Normal file
View File

@ -0,0 +1,21 @@
----------------
-- Testing annotations
-- @module annot
--- first fun.
function first()
if boo then
local bar = do_something()
if bar then
--- @fixme otherwise do what?
end
end
end
--- second try.
function second()
--- @todo also handle foo case
if bar then
end
end