RosettaCodeData/Task/Create-an-HTML-table/EasyLang/create-an-html-table.easy

15 lines
222 B
Text
Raw Permalink Normal View History

2024-04-19 16:56:29 -07:00
print "<table border=1>"
write "<tr><th>"
for c$ in strchars "XYZ"
write "<th>" & c$
.
print ""
for r to 3
write "<tr align=right><td>" & r
for c to 3
2026-04-30 12:34:36 -04:00
write "<td>" & random 1 200
2024-04-19 16:56:29 -07:00
.
print ""
.
2026-04-30 12:34:36 -04:00
print ""