aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging-PseudoCode-Preston.txt
blob: 63efb2b3ce650bbb1eaccfa18da23b300aa4bfc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
begin main function

int i = 0
int count

while i < 10
	print i and add one to i

for count = 0, count less than 10, count +1
	print count

end main function