let title = "My Website" let posts = [ { name: "Post Title 1", date: "1 Jan 2025", comments: [ { author: "User 1", date: "1 Jan 2025", content: "This is a comment" }, { author: "User 2", date: "2 Jan 2025", content: "Second comment" }, ] }, { name: "Post Title 2", date: "4 July 2022", comments: [ { author: "User 1", date: "1 Jan 2025", content: "This is a comment" }, { author: "User 2", date: "2 Jan 2025", content: "Second comment" }, ] }, ] fun render_comment(c)
\c.author (\c.date)

\c.content

\for child in c.children: render_comment(child)
\title This is regular text \for post in posts:
\post.title (\post.date) \for comment in post.comments: render_comment(comment)