mirror of
https://github.com/Hilbis/Hilbish
synced 2025-07-10 21:12:02 +00:00
14 lines
203 B
Lua
14 lines
203 B
Lua
local Object = require 'nature.object'
|
|
|
|
local Page = Object:extend()
|
|
|
|
function Page:new(text)
|
|
self:setText(text)
|
|
end
|
|
|
|
function Page:setText(text)
|
|
self.lines = string.split(text, '\n')
|
|
end
|
|
|
|
return Page
|