OSDN Git Service

change class syntax
[happyabc/happyabc.git] / scm / example / pair.scm
1 ;;; 1
2 ;;; 2
3 ;;; 3
4
5
6 (define x (cons 1 2))
7 (trace (car x))
8 (trace (cdr x))
9
10 (define xs (list 1 2 3))
11 (trace (. xs (length)))
12