<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body text="#000000" bgcolor="#ffffff">
<b>I have been playing on other languages sometimes and I see some
features that speed-up a lot the code creating. I'm posting here
one, I want to see what you think about it.<br>
</b><br>
<b>Good:</b> fast algorithm testings, code creating<br>
<b>Bad?:</b> not a standard of the pascal language<br>
<br>
<i><b>method</b> MyMethod;<br>
<b>var</b> A, B: Integer;<br>
<b>begin<br>
</b><br>
{ Simple sample of a variable inside the method begin/end near to
a for-loop }<br>
<b>var</b> I: Integer;<br>
<b>for</b> I := a <b>to</b> b <b>do</b>...<br>
<br>
{ Or even }<br>
<b>for</b> <b>var</b> J: Integer := a <b>to</b> b <b>do</b>...<br>
{ This is normal on languages like C++ and Java }<br>
<br>
</i><b><i>end;</i><br>
</b><br>
<b>What do you think about</b>?<br>
</body>
</html>