Clojure에서 커맨드 파라미터 처리하는 예제 코드
(ns example.core
(:gen-class))
(defn -main [& args]
(println (format "args=%s" args))
(if (not (empty? args))
(doseq [arg args]
(println arg)
)
(println "no argument")
))
테스트 버전
- Leiningen 버전 : 1.0.0
'1. 연구 모듈 > Lisp - Clojure' 카테고리의 다른 글
[Lisp/Clojure] HTTP 파싱하기 (enlive 모듈 사용) (0) | 2017.09.14 |
---|---|
[겉핥기 프로젝트] Clojure에서 GUI 프로그래밍 (0) | 2017.02.24 |
[Lisp/Clojure] default template 프로젝트 app template 프로젝트로 변환하기 (0) | 2017.01.03 |
[Lisp/Clojure] 비 Eclipse 프로젝트 Eclipse에서 Import하기 (0) | 2016.12.22 |
[Lisp/Clojure] HTTP 요청하기 (clj-http 모듈 사용) (0) | 2016.10.18 |