-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex31_2.rb
executable file
·53 lines (40 loc) · 1.29 KB
/
ex31_2.rb
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
48
49
50
51
52
#!/usr/bin/env ruby
def prompt
print "> "
end
puts "You enter a dark room with two doors. Do you go through door #1 or door #2?"
# gets.chomp().to_i becomes gets.to_i
# I didn't need the chomp() if I was going to turn whatever i gets into an integer
prompt; door = gets.to_i
# Play with using case statements instead of if statements
# I'm using integers in the case statements
# Which means I need gets to end up giving me an integer instead of a string
case door
when 1
puts "There's a giant bear eating a cheese cake. What do you do?"
puts "1. Take the cake."
puts "2. Scream at the bear."
prompt; bear = gets.to_i
case bear
when 1
puts "The bear eats your face off. Good job!"
when 2
puts "The bear eats your legs off. Good job!"
else
puts "Well, doing #{bear} is probably better. Bear runs away."
end
when 2
puts "You stare into the endless abyss at Cthuhlu's retina."
puts "1. Blueberries."
puts "2. Yellow jacket clothespins."
puts "3. Understanding revolvers yelling melodies."
prompt ; insanity = gets.to_i
case insanity
when 1..2
puts "Your body survives powered by a mind of jello. Good job!"
else
puts "The insanity rots your eyes into a pool of muck. Good job!"
end
else
puts "You stumble around and fall on a knife and die. Good job!"
end