From 38d80e1845a2e04c239e1d1beaa2b678f40b39de Mon Sep 17 00:00:00 2001 From: SANO Masatoshi Date: Mon, 2 Feb 2015 15:47:32 +0900 Subject: [PATCH] update sample(trivial) --- samples/hello.ros | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/hello.ros b/samples/hello.ros index d191e75..4732008 100755 --- a/samples/hello.ros +++ b/samples/hello.ros @@ -1,8 +1,8 @@ #!/bin/sh #|-*- mode: lisp -*-|# #|Docstring like 1 line comment that are accepted if it installed -exec ros -- $0 "$@" +exec ros -L sbcl-bin -- $0 "$@" |# (defun main (&rest argv) - (format t "Hello World!~%") + (format t "Hello World! ~A ~%" (lisp-implementation-version)) (format t "argv=~S~%" argv))