You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
219 B
19 lines
219 B
1 year ago
|
let
|
||
|
var a : Integer;
|
||
|
var b : Integer;
|
||
|
var c : Integer;
|
||
|
|
||
|
var x : Char;
|
||
|
var y : Char
|
||
|
in
|
||
|
{
|
||
|
a := 1;
|
||
|
b := 2;
|
||
|
a**;
|
||
|
|
||
|
b := 100;
|
||
|
|
||
|
x := 'A';
|
||
|
y := 'Z';
|
||
|
}
|