Add README

This commit is contained in:
2025-08-04 15:49:46 +02:00
parent 9f96f1ffaa
commit 3d2f6cf429
2 changed files with 66 additions and 3 deletions
+8 -3
View File
@@ -1,5 +1,10 @@
fun a(name)
<a>My name is \(name)</a>
fun comment(data)
<div>
<a>\data.author</a>
<p>\data.content</p>
\for sub_comment in data.sub_comments:
comment(sub_comment)
</div>
a("Francesco")
comment()