Variables
Statements
Basic
Syntax
var_stmt ::= "var" (attributes identifier ((":" type_expr [var_stmt_asgn]) | (var_stmt_asgn)) [","])+var_stmt_asgn ::= ":=" expression
Description
Memory locations with specific types are explicitly named as variables. When values are assigned t...