Create an HTML table: Difference between revisions

Content added Content deleted
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
(→‎{{header|Raku}}: Fix up some internal links)
Line 4,337: Line 4,337:
The below example is kind of boring, and laughably simple. For more interesting/complicated examples see:
The below example is kind of boring, and laughably simple. For more interesting/complicated examples see:


[[Show_Ascii_table#Perl_6]] - ''(simple)''<br>
[[Show_Ascii_table#Raku]] - ''(simple)''<br>
[[Mayan_numerals#Perl_6]] - ''(heavy styling)''<br>
[[Mayan_numerals#Raku]] - ''(heavy styling)''<br>
[[Rosetta_Code/Count_examples/Full_list]] - ''(multi-column sortable)''<br>
[[Rosetta_Code/Count_examples/Full_list]] - ''(multi-column sortable)''<br>
[[Rosetta_Code/List_authors_of_task_descriptions/Full_list]] - ''(complex nested tables)''
[[Rosetta_Code/List_authors_of_task_descriptions/Full_list]] - ''(complex nested tables)''
Line 4,345: Line 4,345:




This is certainly not the only or best way to generate HTML tables using Perl 6; just an example of one possible method.
This is certainly not the only or best way to generate HTML tables using Raku; just an example of one possible method.


<lang perl6>my @header = <&nbsp; X Y Z>;
<lang perl6>my @header = <&nbsp; X Y Z>;