Assignment Statements
$ vbl = numeric_expression
Examples:
$ A = 1
$ B = A +1
$ C = B + A + %X7F25
$ D = %O3776
Notes:
Here, we see some examples of numeric assignments.
We have an assignment using a literal and other assignments using numeric additions.
Note the use of hexadecimal notation in the third example and octal notation in the fourth.