Guest User

Untitled

a guest
May 10th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.26 KB | None | 0 0
  1. (defun ajoute (mot arbre)
  2.   (cond
  3.   ((atom arbre) (list mot))
  4.     ((french-string>= mot (car arbre)) (list (car arbre) (car (cdr arbre)) (ajoute mot (car (cdr (cdr arbre))))))
  5.     ((list (car arbre) (ajoute mot (car (cdr arbre))) (car (cdr (cdr arbre))))) ) )
Advertisement
Add Comment
Please, Sign In to add comment