Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. '(a b c d e f g h)
  2.  
  3. 1.
  4. les 2 caractères n'appartiennent pas à l'alphabet
  5. e.g: (french-char>= 'i 'j) =>
  6.  
  7. on renvoie le résultat de char (char>= 'i 'j) => FALSE (j se trouve avant j)
  8.  
  9. 2.
  10. le premier caractère n'appartient pas à l'alphabet, on renvoit NIL
  11. e.g: (french-char>= 'w 'h) => NIL
  12.  
  13. 3.
  14. le 2ème caractère n'appartient pas à l'alphabet, on renvoit true
  15. e.g: (french-char>= 'd 'u) => TRUE
  16.  
  17. 4.
  18. le premier appartient à la suite du deuxième, on renvoit true
  19. e.g (french-char>= 'b 'a) => TRUE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement