Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

match 구문 질문 #72

Open
cs71107 opened this issue Dec 19, 2020 · 3 comments
Open

match 구문 질문 #72

cs71107 opened this issue Dec 19, 2020 · 3 comments

Comments

@cs71107
Copy link

cs71107 commented Dec 19, 2020

pdf 설명에 보면 inl v1을 x1에 binding 한다고 하는데, 어떤식으로 이루어지는 건지 잘 모르겠습니다.... 예시를 봐도 그냥 _ 가 있어서 잘 이해가 안 가구요... ㅠㅠ
정확히는, binding 을 한 후에 그에 대응되는 evaluate 가 끝나면, binding 한 것도 해제 되어야 하는지 모르겠습니다!

@hoonga
Copy link

hoonga commented Dec 19, 2020

(match (inl 3)
    ((x) (+ x 1))
    ((y) (- y 1))
)

inl 3이기 때문에 3이 x에 bind되어 (+ x 1) 을 계산해 4를 반환해야합니다

@cs71107
Copy link
Author

cs71107 commented Dec 19, 2020

그럼 연산이 끝나면 binding을 해제해야 할까요..? @hoonga

@MerHS
Copy link
Collaborator

MerHS commented Dec 19, 2020

위 답이 맞고 x, y의 스코프는 각각 그 x, y가 정의된 괄호 안입니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants