| was car just running and quit now? | yes | is gas gauge on empty? | yes | get gas
| no
| call tow truck
| no
| does engine crank?
| yes
| check gas
| no
| check battery
| |
- program Greeting;
- begin
- writeln(' Hello Folks');
- writeln('Hope things are OK');
- writeln('\\\\**********////');
- readln;
- end.
VAR
- msg1: string;
readln(msg1);
program echo;
- var
- msg1:string;
- begin
- readln(msg1);
- writeln(msg1);
- readln;
- end.