main(void)1 void main( void )
2 {
3 int &randy;
4 }
5 
hit(void)6 void hit( void )
7 {
8 &randy = random(3, 1);
9 
10  if (&randy == 1)
11  say("`4Kill him, Girls!", &current_sprite);
12  if (&randy == 2)
13  say("`4Judgement day has cometh, sinner!", &current_sprite);
14  if (&randy == 3)
15  say("`4The girls are hungry - DINNER TIME!", &current_sprite);
16 
17 }
18 
talk(void)19 void talk( void )
20 {
21 &randy = random(3, 1);
22 
23  if (&randy == 1)
24  say("`4You made a mistake coming here.", &current_sprite);
25  if (&randy == 2)
26  say("`4Your blood will flow like the river Jordan.", &current_sprite);
27  if (&randy == 3)
28  say("`4Can I interest you in our love gift for December?  Only $80!", &current_sprite);
29 
30 }
31 
32