Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 221 Bytes

make_upper_case.md

File metadata and controls

11 lines (9 loc) · 221 Bytes

Description

Write a function which converts the input string to uppercase.

My Solution

def make_upper_case(str)
  str.upcase
end