table: function [content]
-> join @["
"]
header: function [cells] -> join @["" join @cells "
"]
th: function [lbl] -> join @["" lbl " | "]
row: function [no]
-> join @[
"| " no " | "
"" random 1000 9999 " | "
"" random 1000 9999 " | "
"" random 1000 9999 " |
"
]
print table [
header [th"" th"X" th"Y" th"Z"]
row 1
row 2
row 3
row 4
row 5
]