mirror of
https://github.com/nasa/fpp.git
synced 2025-12-14 01:11:35 -06:00
10 lines
160 B
Fortran
10 lines
160 B
Fortran
@ Escaped quotation marks
|
|
constant s1 = "\"Hello,\" he said."
|
|
|
|
@ Escaped newlines
|
|
constant s2 = """Line 1.
|
|
Line 2."""
|
|
|
|
@ Escaped backslashes
|
|
constant s3 = "\\"
|