\post.title
Posted on \post.date by \post.author\post.content
\for c in post.comments:
comment(c)
include "example.wl" ugu let posts = [ { author: "UserA", title: "I'm the first post", content: "Sup everyone!", date: "1 Jan 2025", comments: [ { author: "UserB", content: "Hello! This is a comment!", comments: [ { author: "UserA", content: "Hello to you!", comments: [] } ] } ] } ] fun comment(c)
\c.content
\for subc in c.comments: comment(subc)\post.content