summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code2/examples/guestbook.zpy
diff options
context:
space:
mode:
authorthing1 <thing1@seacrossedlovers.xyz>2024-09-24 11:30:01 +0100
committerthing1 <thing1@seacrossedlovers.xyz>2024-09-24 11:30:01 +0100
commit997fd49c81a86696db6f62ce8c5bdde038c7cebb (patch)
tree6d55528da52a0d061199ac29ec362d38764dea54 /comp/lucas-standen-NEA/code2/examples/guestbook.zpy
parent905588e11c174e3ac2d6bb235c7ab81532f98691 (diff)
removed the guest book because it wasnt working
Diffstat (limited to 'comp/lucas-standen-NEA/code2/examples/guestbook.zpy')
-rw-r--r--comp/lucas-standen-NEA/code2/examples/guestbook.zpy9
1 files changed, 0 insertions, 9 deletions
diff --git a/comp/lucas-standen-NEA/code2/examples/guestbook.zpy b/comp/lucas-standen-NEA/code2/examples/guestbook.zpy
deleted file mode 100644
index 4fadecd..0000000
--- a/comp/lucas-standen-NEA/code2/examples/guestbook.zpy
+++ /dev/null
@@ -1,9 +0,0 @@
-(defun main int)
- (let names:char** (alloc (sizeof char**)))
- (for i:int 1 (< i 256) 1)
- (set names[i] (readstr))
- (printstr "name_count:")
- (printint i)
- (printchar '\n')
- (endfor)
-(endfun)