Is a number integer : Numeric class « Number « Ruby
- Ruby
- Number
- Numeric class
Is a number integer
num = 4
if num.integer?
puts "Invited guests: " + num.to_s
else
puts "Only whole persons can come to this party."
end
Related examples in the same category