18 lines
317 B
Ruby
18 lines
317 B
Ruby
puts "what is your gender?"
|
|
random = gets.chomp.to_i
|
|
|
|
if female > 20 = "wear dress!"
|
|
else random < 20
|
|
puts "wear pants!"
|
|
|
|
puts "what is temp?" #and above 20
|
|
|
|
#if "female" above 20 = "wear dress"
|
|
#if random <= 20
|
|
# puts "wear shorts!"
|
|
#else random > 20
|
|
#puts "wear pants!"
|
|
end
|
|
|
|
|
|
#def gender(male, female)
|