mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-22 22:33:29 +02:00
[crystal/de] fix quote
This commit is contained in:
@@ -82,7 +82,7 @@ true.class # => Bool
|
|||||||
"s".class # => String
|
"s".class # => String
|
||||||
|
|
||||||
# Strings sind unveränderlich
|
# Strings sind unveränderlich
|
||||||
s = 'hello, " # => "hello, " : String
|
s = "hello, " # => "hello, " : String
|
||||||
s.object_id # => 1234667712 : UInt64
|
s.object_id # => 1234667712 : UInt64
|
||||||
s += "Crystal" # => "hello, Crystal" : String
|
s += "Crystal" # => "hello, Crystal" : String
|
||||||
s.object_id # => 142528472 : UInt64
|
s.object_id # => 142528472 : UInt64
|
||||||
|
Reference in New Issue
Block a user