Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 859 Bytes

2_Creating_leiningen_project.md

File metadata and controls

52 lines (37 loc) · 859 Bytes

Leiningen 프로젝트 만들기

by Eunmin Kim

이럴 때 쓰세요

Clojure 프로젝트를 만들어 보고 싶습니다.

어떻게 하나요?

1. Leiningen 설치

macOS에 Leiningen 설치하기를 보고 Leiningen을 설치합니다.

2. 프로젝트 생성

터미널에 아래 명령어를 입력합니다.

lein new hello

3. 프로젝트 확인

cd hello
tree
.
├── CHANGELOG.md
├── LICENSE
├── README.md
├── doc
│   └── intro.md
├── project.clj
├── resources
├── src
│   └── hello
│       └── core.clj
└── test
    └── hello
        └── core_test.clj

6 directories, 7 files

이런 것도 보세요

  • tree 명령어는 Homebrew로 설치할 수 있어요.
brew install tree