mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-05-01 04:23:39 +00:00
10 lines
332 B
Ruby
10 lines
332 B
Ruby
# method that capitalizes a word
|
|
def capitalize(string)
|
|
puts "#{string[0].upcase}#{string[1..-1]}"
|
|
end
|
|
|
|
capitalize("ryan") # prints "Ryan"
|
|
capitalize("jane") # prints "Jane"
|
|
|
|
# block that capitalizes each string in the array
|
|
["ryan", "jane"].each {|string| puts "#{string[0].upcase}#{string[1..-1]}"} # prints "Ryan", then "Jane" |