From acf0246896e850d647eb06ec54ba4af6d82469ac Mon Sep 17 00:00:00 2001 From: cassowarii <2374677+cassowarii@users.noreply.github.com> Date: Fri, 10 Jul 2026 09:04:38 -0700 Subject: [PATCH] we can now do multiple print properly --- sample/99bottlesofbeer.sa | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sample/99bottlesofbeer.sa b/sample/99bottlesofbeer.sa index 58f1af8..54732df 100644 --- a/sample/99bottlesofbeer.sa +++ b/sample/99bottlesofbeer.sa @@ -2,11 +2,9 @@ def bottles num, otw { if num == 0 { print `no more bottles of beer` } else if num == 1 { - print num - print ` bottle of beer` + print `1 bottle of beer` } else { - print num - print ` bottles of beer` + print num, ` bottles of beer` } if otw { -- 1.8.3.1