Using Racket
S-expression : 구조적인 데이터를 사람이 읽을 수 있는 텍스트 형태로 나타내는 방법
atom, list 로 구분할 수 있다.
(define x 100) # list , x = 100
x # atom , 표시
(+ x 50) # x + 50
(- x 30) # x - 30
(define y (+ x 100)) # y = x + 100
y
(define (square a) (* a a)) #함수 생성시 () 사용
(square 4)