local olotw = ; -- Define a function to display the selected page name
olotw.pagename = function
-- Define a list of Wikipedia outline page names local pages =
-- Get the current week number local week = os.date("%U")
-- Use the week number to select a page from the list local page = pages[tonumber(week) % #pages + 1]
-- Display the selected page return pageendreturn olotw