Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1. commands = Commands.executeMatching("add-admin Marco;Jung;uziah;1123581321", olympics);
  2. commands = Commands.executeMatching("login-admin uziah;1123581321", olympics);
  3. commands = Commands.executeMatching("add-olympic-sport eishockey;eishockey", olympics);
  4. commands = Commands.executeMatching("add-olympic-sport biathlon;biathlon", olympics);
  5. commands = Commands.executeMatching("add-olympic-sport bobsport;bob", olympics);
  6. commands = Commands.executeMatching("add-olympic-sport bobsport;skeleton", olympics);
  7. commands = Commands.executeMatching("add-olympic-sport curling;curling", olympics);
  8. commands = Commands.executeMatching("add-olympic-sport eislauf;eisschnelllauf", olympics);
  9. commands = Commands.executeMatching("add-olympic-sport eislauf;eiskunstlauf", olympics);
  10. commands = Commands.executeMatching("list-olympic-sports", olympics);
  11. commands = Commands.executeMatching("add-ioc-code 011;arg;argentinien;1920", olympics);
  12. commands = Commands.executeMatching("add-ioc-code 112;bhu;bhutan;1984", olympics);
  13. commands = Commands.executeMatching("add-ioc-code 113;bul;bulgarien;1896", olympics);
  14. commands = Commands.executeMatching("add-ioc-code 114;chi;chile;1896", olympics);
  15. commands = Commands.executeMatching("add-ioc-code 115;cze;tschechien;1992", olympics);
  16. commands = Commands.executeMatching("add-ioc-code 116;ecu;ecuador;1924", olympics);
  17. commands = Commands.executeMatching("add-ioc-code 117;esp;spanien;1900", olympics);
  18. commands = Commands.executeMatching("add-ioc-code 118;ger;deutschland;1992", olympics);
  19. commands = Commands.executeMatching("add-ioc-code 119;can;kanada;1900", olympics);
  20. commands = Commands.executeMatching("list-ioc-codes", olympics);
  21. commands = Commands.executeMatching("add-sports-venue 001;deutschland;karlsruhe;KSC Arena;1933;20000", olympics);
  22. commands = Commands.executeMatching("add-sports-venue 002;deutschland;karlsruhe;KSC Arena;1933;20000", olympics);
  23. commands = Commands.executeMatching("add-sports-venue 003;deutschland;karlsruhe;KSC Arena;1933;20000", olympics);
  24. commands = Commands.executeMatching("add-sports-venue 000;deutschland;karlsruhe;KSC Arena;1933;21000", olympics);
  25. commands = Commands.executeMatching("add-sports-venue 005;kanada;karlsruhe;KSC Arena;1933;19000", olympics);
  26. commands = Commands.executeMatching("list-sports-venues deutschland", olympics);
  27. commands = Commands.executeMatching("list-sports-venues kanada", olympics);
  28. commands = Commands.executeMatching("add-athlete 0001;max;mustermann;deutschland;bobsport;bob", olympics);
  29. commands = Commands.executeMatching("add-athlete 0001;max;mustermann;deutschland;eislauf;eisschnelllauf", olympics);
  30. commands = Commands.executeMatching("add-athlete 0002;jane;doe;kanada;eislauf;eiskunstlauf", olympics);
  31. commands = Commands.executeMatching("add-athlete 0002;jane;doe;kanada;eislauf;eisschnelllauf", olympics);
  32. commands = Commands.executeMatching("summary-athletes eislauf;eisschnelllauf", olympics);
  33. Terminal.printLine("__________________________");
  34. commands = Commands.executeMatching("add-competition 0001;2014;deutschland;eislauf;eisschnelllauf;1;0;0", olympics);
  35. commands = Commands.executeMatching("add-competition 0002;2014;kanada;eislauf;eisschnelllauf;0;0;1", olympics);
  36. commands = Commands.executeMatching("add-competition 0002;2014;kanada;eislauf;eiskunstlauf;0;1;0", olympics);
  37. commands = Commands.executeMatching("add-competition 0001;2014;deutschland;bobsport;bob;0;0;0", olympics);
  38. commands = Commands.executeMatching("summary-athletes eislauf;eisschnelllauf", olympics);
  39. commands = Commands.executeMatching("olympic-medal-table", olympics);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement