]> git.mdlowis.com Git - proto/sclpl.git/commitdiff
renamed variable definitions in example source
authorMichael D. Lowis <mike.lowis@gentex.com>
Thu, 14 Jun 2018 17:28:54 +0000 (13:28 -0400)
committerMichael D. Lowis <mike.lowis@gentex.com>
Thu, 14 Jun 2018 17:28:54 +0000 (13:28 -0400)
example.src

index 583ac3e29380cc7dea88eb53748af0c01310125e..aff6ba373b418b468d6de3d36ff7912f77196768 100644 (file)
@@ -7,10 +7,10 @@ let const_false bool = false
 let const_uint int = 123
 let const_string string = ""
 
-var const_true bool = true
-var const_false bool = false
-var const_uint int = 123
-var const_string string = ""
+var var_true bool = true
+var var_false bool = false
+var var_uint int = 123
+var var_string string = ""
 
 # type type_int int
 # type type_intary int[]