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
+17
View File
@@ -0,0 +1,17 @@
let items = ['Apple', 'Orange', 'Strawberry']
let list =
<ul>
\for item in items:
<li>\{escape item}</li>
</ul>
<html>
<head>
<title>Fruit List</title>
</head>
<body>
My list:
\{list}
</body>
</html>