8 lines
137 B
Lua
8 lines
137 B
Lua
|
|
-- helper file for require() tests
|
||
|
|
module( 'sample', package.seeall )
|
||
|
|
function h()
|
||
|
|
print 'in sample.h'
|
||
|
|
end
|
||
|
|
print 'loading sample.lua'
|
||
|
|
|