Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

17 lignes
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)