Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. package org.gtug.bootcamp;
  2.  
  3. import org.gtug.*;
  4. import org.gtug.gtuglers.*;
  5. import org.gtug.exceptions.FunOverloadException;
  6. import com.google.developerday.GDD;
  7.  
  8. public class BootCamp extends GTUGEvent {
  9. public static void main(String[] args) throws FunOverloadException {
  10.  
  11.  
  12. BootCamp bootcamp =
  13. new BootCamp("Germany/Munich").BlackBox.
  14. .beginDate("07.11.2010")
  15. .endDate("08.11.2010")
  16. .addParticipants(GTUG.getGTUGlers(GTUG.MANY))
  17. .hashtags(new String[]{ "#bootcamp", "#gtug" })
  18. .magic();
  19.  
  20. try {
  21. bootCampEvent.codingAndParty();
  22. } catch (FunOverloadException e) {
  23. System.out.println("I want to sleep!");
  24. bootcamp.addCaffeine().hackOn();
  25. } finally {
  26. GDD googleDeveloperDay =
  27. GDD.Magic.location("Germany/Munich")
  28. .beginDate("9.11.2010")
  29. .endDate("9.11.2010")
  30. .hashtags(new String[] { "#gddde" })
  31. .bazinga();
  32. }
  33. }
  34. //...
  35. }
Add Comment
Please, Sign In to add comment