aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdoc/docs/doc/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md
index abff593..c772765 100755
--- a/doc/docs/doc/README.md
+++ b/doc/docs/doc/README.md
@@ -1237,6 +1237,7 @@ some_string = "Here is a string
1237 that has a line break in it." 1237 that has a line break in it."
1238 1238
1239-- You can mix expressions into string literals using #{} syntax. 1239-- You can mix expressions into string literals using #{} syntax.
1240-- String interpolation is only available in double quoted strings.
1240print "I am #{math.random! * 100}% sure." 1241print "I am #{math.random! * 100}% sure."
1241``` 1242```
1242<YueDisplay> 1243<YueDisplay>
@@ -1245,6 +1246,7 @@ some_string = "Here is a string
1245 that has a line break in it." 1246 that has a line break in it."
1246 1247
1247-- You can mix expressions into string literals using #{} syntax. 1248-- You can mix expressions into string literals using #{} syntax.
1249-- String interpolation is only available in double quoted strings.
1248print "I am #{math.random! * 100}% sure." 1250print "I am #{math.random! * 100}% sure."
1249</pre> 1251</pre>
1250</YueDisplay> 1252</YueDisplay>