diff options
| author | Hannah Wu <[email protected]> | 2022-10-12 02:12:07 -0700 |
|---|---|---|
| committer | Hannah Wu <[email protected]> | 2022-10-12 02:12:07 -0700 |
| commit | b8ad331735d114f593a285741a55ffc66c5659fd (patch) | |
| tree | 14545d96403df8779f4ab98cd62541ed26aa3109 /CST116-Ch8-Debugging/CST116-Ch8-DebuggingPseudocode.txt | |
| parent | Added pseudocode file. Added output file. Updated main file. (diff) | |
| download | cst116-chapter8-debugging-wu-b8ad331735d114f593a285741a55ffc66c5659fd.tar.xz cst116-chapter8-debugging-wu-b8ad331735d114f593a285741a55ffc66c5659fd.zip | |
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-DebuggingPseudocode.txt')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-DebuggingPseudocode.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-DebuggingPseudocode.txt b/CST116-Ch8-Debugging/CST116-Ch8-DebuggingPseudocode.txt new file mode 100644 index 0000000..51828af --- /dev/null +++ b/CST116-Ch8-Debugging/CST116-Ch8-DebuggingPseudocode.txt @@ -0,0 +1,9 @@ + Integer "i" = 0 + Integer "count" uninitialized + + WHILE i > 10 + PRINT i + Add 1 to i + + FOR count = 0 to 10 + PRINT count
\ No newline at end of file |