mirror of https://github.com/Wilfred/difftastic/
34 lines
942 B
Plaintext
34 lines
942 B
Plaintext
================================================================================
|
|
Simple String
|
|
================================================================================
|
|
|
|
"hello there"
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source
|
|
(str_lit))
|
|
|
|
================================================================================
|
|
String with Escapes
|
|
================================================================================
|
|
|
|
"first line\nsecond\tline"
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source
|
|
(str_lit))
|
|
|
|
================================================================================
|
|
Multiline String
|
|
================================================================================
|
|
|
|
"this is the first line
|
|
and what is this one?"
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source
|
|
(str_lit))
|