# Project: Create an HTML table load "stdlib.ring" str = "" ncols = 3 nrows = 4 str = str + "
" + windowsnl() str = str + "| " else str = str + " | ||
|---|---|---|
| " + row + " | " ok for col = 1 to ncols if row = 0 str = str + "" + char(87 + col) + " | " else str = str + "" + random(9999) + " | " ok next str = str + windowsnl() + "