mirror of
https://github.com/tbamud/tbamud.git
synced 2026-03-24 21:26:35 +01:00
9 lines
273 B
TOML
9 lines
273 B
TOML
str1 = """
|
|
Roses are red
|
|
Violets are blue"""
|
|
|
|
# On a Unix system, the above multi-line string will most likely be the same as:
|
|
str2 = "Roses are red\nViolets are blue"
|
|
|
|
# On a Windows system, it will most likely be equivalent to:
|
|
str3 = "Roses are red\r\nViolets are blue"
|