Line 1: |
Line 1: |
− | return {
| + | local _ = require('Module:Core') |
− | render = function ()
| + | local Data = require('Module:Data') |
− | return 'foo'
| + | local View = require('Module:View') |
− | end | + | |
− | }
| + | local function render(args) |
| + | local category = args.explicit[1] |
| + | local data = Data.load(category) |
| + | return data[1].title |
| + | end |
| + | |
| + | return View(render) |