diff --git a/Scripting:--echo.md b/Scripting:--echo.md index 1b97d10..08537ae 100644 --- a/Scripting:--echo.md +++ b/Scripting:--echo.md @@ -16,7 +16,7 @@ In general, one worded, simple, or continuous phrases may be implicitly stated. There are limitations for phrases containing certain char, including ` ` `-#$%` -These phrases fall under the explicit category in which quotation marks `" "` are necessary. +These phrases fall under the explicit category in which quotation marks `" "` are necessary. These _can_ be escaped via the use of a backslash, but this should only really be used when there is one character that needs to be escaped. **Example 3:** @@ -30,6 +30,8 @@ Incorrect: `echo 0:/Nintendo 3DS/` Correct: `echo "0:/Nintendo 3DS/"` +Also correct (not recommended): `echo 0:/Nintendo\ 3DS/` + ### Skipping lines Phrases that are too long may become unreadable if they fill past the right edge of the 3DS bottom screen. Like typing with the **Enter** key for a keyboard, the inclusion of `\n` serves as a break to begin readouts with a new line.