From: cassowarii <2374677+cassowarii@users.noreply.github.com> Date: Fri, 10 Jul 2026 16:04:38 +0000 (-0700) Subject: we can now do multiple print properly X-Git-Url: https://www.git.cassowary.me/gitweb.cgi?a=commitdiff_plain;h=acf0246896e850d647eb06ec54ba4af6d82469ac;p=sarabande.git we can now do multiple print properly --- 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 {