Merge pull request #6534 from thiagola92/single_quote

Update string literal example
This commit is contained in:
Matthew
2023-01-18 21:09:26 -05:00
committed by GitHub

View File

@@ -300,7 +300,7 @@ Literals
+--------------------------+----------------------------------------+
| ``3.14``, ``58.1e-10`` | Floating-point number (real) |
+--------------------------+----------------------------------------+
| ``"Hello"``, ``"Hi"`` | Strings |
| ``"Hello"``, ``'Hi'`` | Strings |
+--------------------------+----------------------------------------+
| ``"""Hello"""`` | Multiline string |
+--------------------------+----------------------------------------+