Variable Declaration
class VariableDeclaration( val identifier: Identifier, val type: Type, val expression: Expression, val isConst: Boolean) : Statement
Content copied to clipboard
Declares an initialises a variable or constant in the current scope.
Constructors
Link copied to clipboard
fun VariableDeclaration( identifier: Identifier, type: Type, expression: Expression, isConst: Boolean)
Content copied to clipboard