This commit is contained in:
agra
2026-02-16 01:58:30 +02:00
parent b20676375d
commit c8ceceed0f
6 changed files with 104 additions and 236 deletions

View File

@@ -119,9 +119,9 @@ main :: {
// String with escapes
print("escapes: hello\tworld\n");
// Multi-line string (backtick)
ml := `line1
line2`;
// Multi-line string
ml := "line1
line2";
print("multiline: {}\n", ml);
// Heredoc string