Read a linear list of data from a file.
You can assume that the data is represented as a Lisp list. Present the data on HTML page using a table in one of the following ways:
You can assume that n is positive integer. Example: If we input the list (1 2 3 4 5 6 7 8) with n = 3 into columns we get the table
You can make your own table function, or you can use one of the table functions from LAML (in the convenience library). The table functions typically require a list of rows. You can program your own functions that make these rows from your input list, or you can use the function sublist-by-rows and sublist-by-columns (from the general library). |
There is no solution to this exercise