What are Constants?
A. The difference between constants and variables is that constants cannot ever be changed, but variables can. To make a constant you must use this code. Const Constant1 = ‘Hello’; Constant2 = 23423; Constant3 = True; As you can see, constants don’t need to be told wether they are integers or strings, etc. once you set a constant value you cannot change it. 3.4. Q. Writing things in the Scar box. A. To right things into the box at the bottom of scar simply type Writeln(‘Hello’) Into your code. This will type the text Hello. 3.5. Q. Using the Report Box A. To right things into the report box simple type this into your code. AddToReport(‘Hello’) That will add the word hello to your report box.