summaryrefslogtreecommitdiffhomepage
path: root/tests/00_syntax/06_open_statement_block
blob: 9c2d14276c2ab24d738af1ae03f064ab75ba62ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
The last statement block of a template may remain open, this is useful for templates
that contain only code.

-- Expect stdout --
This template consists entirely of script code!
-- End --

-- Testcase --
{%
	print("This template ");
	print("consists entirely ");
	print("of script code!\n");
-- End --