မေႃႇၵျူး:Uses calculator
Appearance
| This module depends on the following other modules: |
Implements {{Uses calculator}}.
Like this:
{{Uses calculator}}
| This template uses Template:Calculator. |
local mMessageBox = require('Module:Message box')
local p = {}
function p._main()
local boxArgs = {
type = 'notice',
small = true,
image = '[[File:GNOME Calculator icon 2018.svg|32px|alt=Calculator icon]]',
text = 'This template uses [[Template:Calculator]].'
}
return mMessageBox.main('mbox', boxArgs) .. '[[Category:Calculator templates]]'
end
function p.main(frame)
return p._main()
end
return p