diff options
Diffstat (limited to 'tests/00_syntax/08_embedded_multi_line_comments')
-rw-r--r-- | tests/00_syntax/08_embedded_multi_line_comments | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/00_syntax/08_embedded_multi_line_comments b/tests/00_syntax/08_embedded_multi_line_comments index b27554f..75aba5f 100644 --- a/tests/00_syntax/08_embedded_multi_line_comments +++ b/tests/00_syntax/08_embedded_multi_line_comments @@ -12,7 +12,7 @@ Statement blocks may use C comments too: Test Another test. The final test. -- Testcase -- The result of 12 - 4 is {{ /* A comment before */ 12 - /* or even within */ 4 /* or after an expression */ }}. -Statement blocks may use C comments too: {% +Statement blocks may use C comments too: {%+ print("Test"); /* A comment. */ /* Another comment. */ @@ -20,4 +20,5 @@ Statement blocks may use C comments too: {% print(/* A comment within */ " The final test."); %} + -- End -- |