If you are typing some javascript inside a squeak string, like:

'mumble("x");
grumble("*");'


there are subtle things that can go wrong. If you inadvertently type

mumble('x');

you'll get a compiler error, but if you type

grumble('*');

can you guess the result without actually running it?

Cheers,
Bob