Merge pull request #67 from Clouder0/patch-1

fix: '' escape example comment
This commit is contained in:
Ryan Yin 2024-01-06 09:57:50 +08:00 committed by GitHub
commit 250123d697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,7 +235,7 @@ let
in
''the value of a is:
''${a}
'' # 结果是 "the value of a is ''${a}"
'' # 结果是 "the value of a is ${a}"
```
其他 `\n` `\t` 等特殊字符的转义也类似,必须使用两个单引号来转义,如