mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
11 lines
296 B
Plaintext
11 lines
296 B
Plaintext
#! /usr/bin/env lfescript
|
|
|
|
;;; --------------------
|
|
;;; entry point function
|
|
;;; --------------------
|
|
|
|
(defun main (args)
|
|
(let ((script-name (escript:script_name)))
|
|
(io:format "Running script '~s' with args ~p ...~n" `(,script-name ,args))
|
|
(io:format "~p~n" `(,(gilded-rose:my-fun)))))
|