함수의 극한
/
Blog
/
[학습] def
Search
[학습] def
Tags
학습
Clojure
Published Date
2024/09/16
주제
Clojure 학습
목표
•
def에 대해서 알기
키워드
값 바인딩
전역변수 생성
전역 함수
네임스페이스 단위
정리
1.
네임스페이스에 전역적으로 무언가 할 때 사용한다
a.
전역 변수
b.
전역 함수
c.
설정
(
def
URL
"localhost:3000"
)
(
def
triple
(
fn
[
x
]
(
*
x x x
)
)
)
Clojure
복사
참조
Clojure - Special Forms
Special forms have evaluation rules that differ from standard Clojure evaluation rules and are understood directly by the Clojure compiler.
def - clojure.core | ClojureDocs - Community-Powered Clojure Documentation and Examples
다음 질문
•
let이란?