Модуль:Bananas: различия между версиями

Материал из Буквицы
Перейти к навигации Перейти к поиску
Нет описания правки
Нет описания правки
Строка 4: Строка 4:
function p.hello()
function p.hello()
--return tostring (os.date("%c",-5559999995))
--return tostring (os.date("%c",-5559999995))
return tostring (os.time()),":",tostring (os.time({year=1919, day=11, month=11,})) -- return "Hello, world a!"
return tostring (os.time()),":",tonumber (os.time({year=1919, day=11, month=11,})) -- return "Hello, world a!"
--return tostring (os.time()),":",tonumber(os.time())
--return tostring (os.time()),":",tonumber(os.time())
end
end


return p
return p

Версия от 04:35, 6 марта 2015

Для документации этого модуля может быть создана страница Модуль:Bananas/doc

-- For unit tests, see [[Module:Bananas/testcases]]
local p = {}

function p.hello()
--return tostring (os.date("%c",-5559999995))
return tostring (os.time()),":",tonumber (os.time({year=1919, day=11, month=11,})) -- return "Hello, world a!"
--return tostring (os.time()),":",tonumber(os.time())
end

return p