Module:User:Internoob

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is a private module sandbox of Internoob, for his own experimentation. Items in this module may be added and removed at Internoob's discretion; do not rely on this module's stability.


local p = {}

function p.main(frame)
    local args = frame:getParent().args
    local word = args[1]
    local base = string.sub(word, 1, #word-1)
    return frame:expandTemplate{ title='en-verb', args = { word..'s', base..'ing', word..'d' }}
end

return p