summaryrefslogtreecommitdiff
path: root/src/cmdline/cmdline_moo.cc
blob: d89b7a358a725c33aad165f448eb342bd91f7999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// cmdline_moo.cc
//
//   Copyright 2004 Daniel Burrows

#include "cmdline_moo.h"

#include <aptitude.h>

#include <stdio.h>

int cmdline_moo(int argc, char *argv[], int verbose)
{
  switch(verbose)
    {
    case 0:
      printf(_("There are no Easter Eggs in this program.\n"));
      break;
    case 1:
      printf(_("There really are no Easter Eggs in this program.\n"));
      break;
    case 2:
      printf(_("Didn't I already tell you that there are no Easter Eggs in this program?\n"));
      break;
    case 3:
      printf(_("Stop it!\n"));
      break;
    case 4:
      printf(_("Okay, okay, if I give you an Easter Egg, will you go away?\n"));
      break;
    case 5:
      printf(_("All right, you win.\n"));
      printf("\n");
      printf("                               /----\\\n");
      printf("                       -------/      \\\n");
      printf("                      /               \\\n");
      printf("                     /                |\n");
      printf("   -----------------/                  --------\\\n");
      printf("   ----------------------------------------------\n");
      break;

    default:
      printf(_("What is it?  It's an elephant being eaten by a snake, of course.\n"));
      break;
    }

  return 0;
}