nomo/tests/cases/deep_access.nomo
Marcel Müller ffd9baf90f Add deep access
Signed-off-by: Marcel Müller <neikos@neikos.email>
2026-03-15 14:31:46 +01:00

16 lines
No EOL
230 B
Text

{
"world": {
"active": true,
"name": "World!"
}
}
---
{{ if world?.active }}
Hello {{= world.name }}
{{ end }}
{{ if world?.foo?.bar?.active }}
Weird!
{{ else }}
Deep access is working :)
{{ end }}