Some progress on the assembler

This commit is contained in:
2025-08-02 21:46:07 +02:00
parent e7227c3433
commit 234087422f
3 changed files with 170 additions and 12 deletions
+2 -2
View File
@@ -23,14 +23,14 @@ posts = [
];
fun render_comment(c)
return <div class="comment">
<div class="comment">
<a>$c.author; ($c.date;)</a>
<p>$c.content;</p>
<div class="comment-children">
$for child in c.children:
render_comment(child);
</div>
</div>;
</div>
<html>
<head>