8 lines
94 B
Lua
8 lines
94 B
Lua
local test = {}
|
|
|
|
test.render = function(std)
|
|
return std.h2("Hello, World!")
|
|
end
|
|
|
|
return test
|