RosettaCodeData/Task/Create-an-HTML-table/EasyLang/create-an-html-table.easy
2026-04-30 12:34:36 -04:00

14 lines
222 B
Text

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
write "<td>" & random 1 200
.
print ""
.
print ""