From dcaebac3bed969f1654e87eb6a6d485109caf99e Mon Sep 17 00:00:00 2001 From: SirNapkin1334 <31591796+SirNapkin1334@users.noreply.github.com> Date: Wed, 25 Apr 2018 15:30:38 -0700 Subject: [PATCH] escaping with \ --- Scripting:--echo.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.