$table ( element -- )
Factor handbook » Developer tools » Help system » Writing documentation » Element types » Block elements

Prev:$subsection ( element -- )


Vocabulary
help.markup

Inputs
elementan array of arrays of markup elements


Outputs
None

Word description
Prints a table given as an array of rows, where each row must have the same number of columns.

Examples
{ $table { "a" "b" "c" } { "d" "e" "f" } } print-element

abc
def


Definition