summaryrefslogtreecommitdiff
path: root/fizzbuzz.bþ
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-21 12:56:30 +0100
committerubq323 <ubq323@ubq323.website>2024-06-21 12:56:30 +0100
commit21994864559386f1d11c001d6d27714cbf624a15 (patch)
treeb9a5e76bdc8be9a41970cd6620aab7a3637b7e6a /fizzbuzz.bþ
parent671645c370498955eb101695bd9099bf4caf5aea (diff)
add tests, and make dumping disasm optional
Diffstat (limited to 'fizzbuzz.bþ')
-rw-r--r--fizzbuzz.bþ10
1 files changed, 0 insertions, 10 deletions
diff --git a/fizzbuzz.bþ b/fizzbuzz.bþ
deleted file mode 100644
index e70c2c1..0000000
--- a/fizzbuzz.bþ
+++ /dev/null
@@ -1,10 +0,0 @@
-(do
- (set n 1)
- (while (< n 30)
- (print
- (if (= 0 (% n 5))
- (if (= 0 (% n 3)) "fizzbuzz" "buzz")
- (if (= 0 (% n 3)) "fizz" n)))
- (set n (+ n 1))))
-
-