thank you for the reply johnny. Here's what I mean.
This is an example of the code I have
- Code: Select all
begin
x := x + 1;
y := y + 2;
z := sqr(x + y);
writeln(z);
end;
This is what I want my code to look like. Where the [ ]'s are just an indication that some code is there. I know in a unit you can minimize the interface section, where one way you see a whole bunch of code and the other way you just see a small box. When you click inside the box then you can see the code contained within. I hope that is clear
- Code: Select all
begin
[ ]
writeln(z);
end;