<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    If you are typing some javascript inside a squeak string, like:<br>
    <br>
    <font face="Georgia">'mumble("x");<br>
      grumble("*");'</font><br>
    <br>
    there are subtle things that can go wrong. If you inadvertently type<br>
    <br>
    <font face="Georgia">mumble('x');</font><br>
    <br>
    you'll get a compiler error, but if you type<br>
    <br>
    <font face="Georgia">grumble('*'</font>);<br>
    <br>
    can you guess the result without actually running it?<br>
    <br>
    Cheers,<br>
    Bob<br>
  </body>
</html>