]> git.jsancho.org Git - guile-click.git/blobdiff - examples/hello.scm
Prompt for values
[guile-click.git] / examples / hello.scm
index 9f00e6bbd5e3d279e37276d58afbdf49b00ce9d8..4f59cccf85f770a24df71e9b33c091a949a2089a 100755 (executable)
@@ -31,7 +31,7 @@
      "Simple program that greets NAME for a total of COUNT times."
      (let loop ((times count))
        (cond ((> times 0)
-              (format #t "Hello ~a!" name)
+              (format #t "Hello ~a!~%" name)
               (loop (- times 1))))))))
 
 (hello (command-line))