Macro to print type and content
macro t(name)
print "%s %s\n" % {typeof({{name}}), {{name}}}
end
h = {"a" => 1, "b-1" => 2}
t h
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
macro t(name)
print "%s %s\n" % {typeof({{name}}), {{name}}}
end
h = {"a" => 1, "b-1" => 2}
t h