sailfish/benches/templates_ructe/big_table.rs.html

12 lines
147 B
HTML

@(table: &Vec<Vec<usize>>)
<table>
@for row in table{
<tr>
@for col in row {
<td>@col</td>
}
</tr>
}
</table>