mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
145 B
Ruby
12 lines
145 B
Ruby
|
# encoding: us-ascii
|
||
|
|
||
|
module CodingUS_ASCII
|
||
|
def self.encoding
|
||
|
__ENCODING__
|
||
|
end
|
||
|
|
||
|
def self.string_literal
|
||
|
"string literal"
|
||
|
end
|
||
|
end
|