New modules.
WrenCI / linux (push) Waiting to run
WrenCI / mac (push) Waiting to run
WrenCI / windows (push) Waiting to run

This commit is contained in:
2026-01-24 19:35:43 +01:00
parent 1a08b3adf0
commit 236d69c2d7
118 changed files with 315687 additions and 6 deletions
+13
View File
@@ -0,0 +1,13 @@
// retoor <retoor@molodetz.nl>
import "jinja" for Environment, DictLoader
var env = Environment.new(DictLoader.new({
"simple": "before{# comment #}after",
"multiword": "a{# this is a comment #}b",
"with_tags": "x{# {{ ignored }} #}y"
}))
System.print(env.getTemplate("simple").render({})) // expect: beforeafter
System.print(env.getTemplate("multiword").render({})) // expect: ab
System.print(env.getTemplate("with_tags").render({})) // expect: xy