11 lines
121 B
Ruby
Executable File
11 lines
121 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
# -*- coding: utf-8 -*-
|
|
|
|
=begin
|
|
특정 문자 제거
|
|
=end
|
|
|
|
str = "Hello World"
|
|
|
|
puts str.delete("aeiou")
|