Erroneous comment

removed "define mySecondVar as a real" unnecessary and incorrect.
This commit is contained in:
Ian Bertolacci 2015-07-20 12:59:35 -07:00
parent d2d98a3810
commit 2936ca4c69

View File

@ -35,7 +35,7 @@ var mySecondVar = myVar;
// var anError; // this would be a compile time error.
// We can (and should) explicitly type things
var myThirdVar: real; // define mySecondVar as a real
var myThirdVar: real;
var myFourthVar: real = -1.234;
myThirdVar = myFourthVar;