10 lines
111 B
Ruby
Executable File
10 lines
111 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
# -*- coding: utf-8 -*-
|
|
|
|
=begin
|
|
문자열 뒤집기
|
|
=end
|
|
|
|
str = "Hello World"
|
|
|
|
puts str.reverse |