lang_ref_comments.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type"
  4. content="text/html; charset=iso-8859-1">
  5. <title>Language Reference - Comments</title>
  6. <link rel="stylesheet" href="lang_ref.css" type="text/css">
  7. </head>
  8. <body><br>
  9. &nbsp;<span class="Command">&nbsp;Comments&nbsp;</span>
  10. <blockquote>
  11. <p>You add comments to your programs using the ';' character. Everything following
  12. the ';' until the end of the line will be ignored, this is useful for commenting
  13. your code - so you can always look through and follow each line in a logical
  14. manner. </p>
  15. <p>The following code shows comments in use;</p>
  16. </blockquote>
  17. <table width="90%" border="0" cellspacing="0" cellpadding="0" align="center">
  18. <tr>
  19. <td>
  20. <blockquote> <br>
  21. ; Begin the Redraw Function<br>
  22. Function Redraw()<br>
  23. ...<br>
  24. End Function</blockquote>
  25. </td>
  26. </tr>
  27. </table>
  28. <blockquote>
  29. <p>This code also shows a legal use of comments;</p>
  30. </blockquote>
  31. <table width="90%" border="0" cellspacing="0" cellpadding="0" align="center">
  32. <tr>
  33. <td>
  34. <blockquote> <br>
  35. Function Redraw() ; Begin the Redraw Function<br>
  36. ...<br>
  37. End Function</blockquote>
  38. </td>
  39. </tr>
  40. </table>
  41. <p><br>
  42. </p>
  43. </body>
  44. </html>