6 lines
96 B
Ruby
6 lines
96 B
Ruby
class Acronym
|
|
def self.abbreviate(long_name)
|
|
long_name.scan(/\b\w/).join.upcase
|
|
end
|
|
end
|