Exibir código-fonte para Módulo:Categoria ver também
Ir para navegação
Ir para pesquisar
Você não possui permissão para editar esta página, pelo seguinte motivo:
Você pode ver e copiar o código desta página.
-- This module implements {{Category see also}}
local mHatnote = require('Módulo:Hatnote')
local p = {}
local function makeWikitextError(msg)
return string.format(
'<strong class="error">Erro: %s ([[Predefinição:Categoria ver também]])</strong>',
msg
)
end
-- Gets the length of the sequence seq. Usually this should be done with the #
-- operator, but we need to work with tables that get their values through an
-- __index metamethod.
local function getSequenceLength(seq)
local length = 0
for i in ipairs(seq) do
length = i
end
000
1:0
Predefinição usada nesta página:
Retornar para Módulo:Categoria ver também.