From 6896c7ab5b873d6103af5181501e9e78fd5b25d3 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Tue, 12 Apr 2011 21:33:19 +0400 Subject: Synopsis --- gcd.lisp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcd.lisp') diff --git a/gcd.lisp b/gcd.lisp index 831bb31..4bf5840 100644 --- a/gcd.lisp +++ b/gcd.lisp @@ -1,3 +1,8 @@ +; SYNOPSIS: +; # clisp gcd.lisp 11 22 33 121 +; # sbcl --script gcd.lisp 121 22 33 +; + (defun gcd2 (a b) (if (= b 0) a -- cgit v1.2.3