You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- (import "alist.slime")
-
- (define-typed (tf n :number a :alist)
- (printf n)
- (pprint-alist a))
-
-
- (define a (make-alist))
- (alist-set! a 'a 1)
- (alist-set! a 'b 2)
- (tf 1 a)
-
- (define (test a b)
- (printf a b))
-
- (test :ij :yes)
|