Ruby Math and string functions
Math and string manipulation functions.
#!/usr/local/bin/ruby
puts 1.5.floor() # numbers and strings are real objects
puts "hello".upcase # () are option in object calls
#!/usr/local/bin/ruby
puts 1.5.floor() # numbers and strings are real objects
puts "hello".upcase # () are option in object calls