Assignment
From Mesham
Jump to navigationJump to search
Syntax
In order to assign a value to a variable then the programmer will need to use variable assignment.
[lvalue]:=[rvalue];
Where lvalue is a variable and rvalue a variable or expression
Semantics
Will assign a value to a variable
Examples
var i:=4;
var j:=i;