mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-27 16:49:31 +00:00
12 lines
185 B
Lua
12 lines
185 B
Lua
--- # Symbols
|
|
-- @titlelevel 3
|
|
|
|
return {
|
|
{
|
|
--- Return a string of the symbol name.
|
|
"to string", "(symbol::is symbol)",
|
|
function(state, sym)
|
|
return sym:to_string()
|
|
end
|
|
},
|
|
}
|