For we are human.

gompr:

I’ve been programming and drinking.

    public static void main (String[] args[]) {
      Person me = new Person("Gompr");
      Case case = new Case(12, "Pearl");

      if (getDrunk(me)) {
        for (Beer beer : case) {
          drink(beer);
        }
      }
    }

    // Should you get drunk?
    public static boolean getDrunk (Person person) {
      return true;
    }

    // Algorithm for drinking
    public static void drink (Beer beer) {
      while (!beer.empty()) {
        beer.drink();
      }
    }

This is the answer to life’s biggest question.

  1. burntim reblogged this from gompr and added:
    This is the answer to life’s biggest question.
  2. mikepayne reblogged this from gompr and added:
    Holy shit this is
  3. gompr posted this