X-Git-Url: https://git.jsancho.org/?p=guile-click.git;a=blobdiff_plain;f=examples%2Fhello.scm;h=4f59cccf85f770a24df71e9b33c091a949a2089a;hp=9f00e6bbd5e3d279e37276d58afbdf49b00ce9d8;hb=a2c12dede99c0d296194699e025a2e541c8a98a0;hpb=7bb66a7166059976c81aef6e76f205c14b45cc45 diff --git a/examples/hello.scm b/examples/hello.scm index 9f00e6b..4f59ccc 100755 --- a/examples/hello.scm +++ b/examples/hello.scm @@ -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))