Marvin Humphrey wrote on 11/14/09 2:48 PM:

> To achieve those gains, we have to resign ourselves to writing code like
> this...
> 
>    "        printf(\"%%d\", 1);\n"
> 
> ... instead of this...
> 
>             printf("%%d", 1);
> 
> ... to put this line into our mini test-compile:
> 
>    printf("%d", 1);
> 
> Thoughts?

Seems like a small price to pay for greater conceptual simplicity and one less
dependency. Escaping quotes is a fairly minor thing imo.

-- 
Peter Karman  .  http://peknet.com/  .  [email protected]

Reply via email to