diff options
| author | Tim Pearse <[email protected]> | 2022-10-12 16:45:35 -0700 |
|---|---|---|
| committer | Tim Pearse <[email protected]> | 2022-10-12 16:45:35 -0700 |
| commit | a05acef5f7daf72c3b70671f1e3113568f82f471 (patch) | |
| tree | 4931e725a7a465ceac19551e63a5adf961ddb85c /cst116-Ch8-Pearse-Pseudocode.txt | |
| parent | Change 0 : Uploading gitignore (diff) | |
| download | cst116-chapter8-debugging-legokid1503-main.tar.xz cst116-chapter8-debugging-legokid1503-main.zip | |
Diffstat (limited to 'cst116-Ch8-Pearse-Pseudocode.txt')
| -rw-r--r-- | cst116-Ch8-Pearse-Pseudocode.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cst116-Ch8-Pearse-Pseudocode.txt b/cst116-Ch8-Pearse-Pseudocode.txt new file mode 100644 index 0000000..3d6534a --- /dev/null +++ b/cst116-Ch8-Pearse-Pseudocode.txt @@ -0,0 +1,12 @@ +main(){ + int i = 0 + int count + + while (i < 10) { + print(i) + i++ + } + for (count = 0; count < 10; count++){ + print(count) + } +}
\ No newline at end of file |