Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- staedtler
- Sketch
- Urban Sketch
- 그림
- 프로요
- 안드로이드
- Watercolor
- It
- paris
- pen
- 드로잉
- travel
- 이슈
- brush pen
- 리뷰
- 미술
- Android
- 스케치
- 구글
- 진저브레드
- 프랑스
- 음악
- DRAWING
- 취미
- 수채화
- usk
- 책
- 스마트폰
- 여행
Archives
- Today
- Total
Seblog
ML make counter program 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
fun make_counter(init:int) =
let
val count = ref init;
fun counter(inc:int)
=(count = !count +inc;
!count)
in
counter
end
val c = make_counter(1);
c(2) + c(2) = ?
'Study' 카테고리의 다른 글
Dijkstra Algorithm을 이용한 지하철 최단경로 구하기 (0) | 2011.07.09 |
---|---|
Block, Scope, first-class (0) | 2011.05.10 |
Upward Downward Funarg problem (0) | 2011.05.03 |
문제 유형 (0) | 2011.05.02 |
lambda calculus : binding variable, bound variable (0) | 2011.03.30 |
Comments