Files
BlitzNext/#Test/help/language/lang_ref_comments.html
T

48 lines
1.2 KiB
HTML

<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Language Reference - Comments</title>
<link rel="stylesheet" href="lang_ref.css" type="text/css">
</head>
<body><br>
&nbsp;<span class="Command">&nbsp;Comments&nbsp;</span>
<blockquote>
<p>You add comments to your programs using the ';' character. Everything following
the ';' until the end of the line will be ignored, this is useful for commenting
your code - so you can always look through and follow each line in a logical
manner. </p>
<p>The following code shows comments in use;</p>
</blockquote>
<table width="90%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<blockquote> <br>
; Begin the Redraw Function<br>
Function Redraw()<br>
...<br>
End Function</blockquote>
</td>
</tr>
</table>
<blockquote>
<p>This code also shows a legal use of comments;</p>
</blockquote>
<table width="90%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<blockquote> <br>
Function Redraw() ; Begin the Redraw Function<br>
...<br>
End Function</blockquote>
</td>
</tr>
</table>
<p><br>
</p>
</body>
</html>