Added missing quote.

This commit is contained in:
ethereal 2017-03-10 02:04:57 -08:00
parent f6f5cf5e3e
commit d81ad9d206
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ proc foobar(a: ref TPerson) =
double d = 3.1415926;
int i = (int) d;
d = (double) i;
printf(%d, %g\n", i, d);
printf("%d, %g\n", i, d);
</pre>
<pre>
int x = 42;