Add examples and move tests to the tests/ folder

This commit is contained in:
2025-10-17 21:22:36 +02:00
parent 5706b1f861
commit b0900b3592
122 changed files with 202 additions and 158 deletions
+13
View File
@@ -0,0 +1,13 @@
procedure my_page_template(title, content) {
<html>
<head>
<title>\{escape title}</title>
</head>
<body>
\{content}
</body>
</html>
}
my_page_template("Welcome to my webpage!", <article>Content of my page</article>)