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.
 
 
 
 
 
 

17 rivejä
223 B

  1. (import "alist.slime")
  2. (define-typed (tf n :number a :alist)
  3. (printf n)
  4. (pprint-alist a))
  5. (define a (make-alist))
  6. (alist-set! a 'a 1)
  7. (alist-set! a 'b 2)
  8. (tf 1 a)
  9. (define (test a b)
  10. (printf a b))
  11. (test :ij :yes)