RB
rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def gotham_city(criminals)
case criminals
when 1...5
puts "I got this"
when 5..10
puts "Batman Help me"
else
puts "Good Luck out there"
end
end
puts "Enter criminals"
input = gets.chomp
gotham_city input
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run