모듈:User:Jesusmas/lecture/ex0 2

위키백과, 우리 모두의 백과사전.
local function hello(frame) -- 우선 hello라는 함수 하나를 만들고
	return "Hello, world!"
end
 
return {hello=hello} -- 마지막에 테이블을 하나 생성해 리턴해 주는 방식도 애용됩니다.