aboutsummaryrefslogtreecommitdiff
path: root/cst116-Ch8-Pearse-Pseudocode.txt
diff options
context:
space:
mode:
authorTim Pearse <[email protected]>2022-10-12 16:45:35 -0700
committerTim Pearse <[email protected]>2022-10-12 16:45:35 -0700
commita05acef5f7daf72c3b70671f1e3113568f82f471 (patch)
tree4931e725a7a465ceac19551e63a5adf961ddb85c /cst116-Ch8-Pearse-Pseudocode.txt
parentChange 0 : Uploading gitignore (diff)
downloadcst116-chapter8-debugging-legokid1503-main.tar.xz
cst116-chapter8-debugging-legokid1503-main.zip
Change 1 : Uploading the Debugging, Output, and PseudocodeHEADmain
Diffstat (limited to 'cst116-Ch8-Pearse-Pseudocode.txt')
-rw-r--r--cst116-Ch8-Pearse-Pseudocode.txt12
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