Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. ; ##############################################################################
  2. ; ## Aufgabe 1.1 ###############################################################
  3. ; ##############################################################################
  4.  
  5. (define BuchstabierTafel
  6. '(
  7. (#\A Alfa)
  8. (#\T Tango)
  9. (#\B Bravo)
  10. (#\U Uniform)
  11. (#\C Charlie)
  12. (#\V Viktor)
  13. (#\D Delta)
  14. (#\W Whiskey)
  15. (#\E Echo)
  16. (#\X X-ray)
  17. (#\F Foxtrott)
  18. (#\Y Yankee)
  19. (#\G Golf)
  20. (#\Z Zulu)
  21. (#\H Hotel)
  22. (0 Nadazero)
  23. (#\I India)
  24. (1 Unaone)
  25. (#\J Juliett)
  26. (2 Bissotwo)
  27. (#\K Kilo)
  28. (3 Terrathree)
  29. (#\L Lima)
  30. (4 Kartefour)
  31. (#\M Mike)
  32. (5 Pantafive)
  33. (#\N November)
  34. (6 Soxisix)
  35. (#\O Oscar)
  36. (7 Setteseven)
  37. (#\P Papa)
  38. (8 Oktoeight)
  39. (#\Q Quebec)
  40. (9 Novenine)
  41. (#\R Romeo)
  42. ("," Decimal)
  43. (#\S Sierra)
  44. ("." Stop)
  45. )
  46. )
  47. ; Diese Assoziativliste speichert zu jedem Buchstaben einen Schlüssel.
  48. ; Die Liste so anzulegen, hat den Vorteil, dass sie assoziativ ist
  49. ; (es kann mit assoc darauf zugegriffen werden).
  50. ; Dadurch kann mit einem Schlüssel auf den Wert zugeriffen werden (map).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement