cl-grep

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ae0425ef5f0838b67439a44c821fea0347467cf0
parent 2c14029da763f3587d25d1c7d7f6c307cd7d6494
Author: ChanderG <[email protected]>
Date:   Wed, 26 Nov 2025 14:27:52 +0530

add basic command line args

Diffstat:
Mgrep.asd | 1+
Mgrep.lisp | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/grep.asd b/grep.asd @@ -3,6 +3,7 @@ :author "Chander Govindarajan" :components ((:file "package") (:file "grep")) + :depends-on (:uiop) :build-operation "program-op" :build-pathname "cl-grep" :entry-point "cl-grep:main") diff --git a/grep.lisp b/grep.lisp @@ -1,4 +1,4 @@ (in-package cl-grep) (defun main () - (format t "WIP!")) + (format t "Args: ~a~%" (uiop:command-line-arguments)))