kytschBASIC

Put down that phone!
Please view me on real computer.

TROW

Creating a table row.

Example


TROW
	TCELL
		PRINT "Table cell 1"
	TCELL CLOSE
	TCELL
		PRINT "Table cell 2"
	TCELL CLOSE
TROW CLOSE

Output

<tr>
	<td>
		<span>Table cell 1</span>
	</td>
	<td>
		<span>Table cell 2</span>
	</td>
</tr>

See also