mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 21:52:48 +00:00
Try to cover the most basic command. Will require more explanations.
parent
da6e0f83ac
commit
b205f39488
@ -1,8 +1,28 @@
|
||||
(Work In Progress) This page delves into greater details about the `echo` command.
|
||||
|
||||
### Character Set
|
||||
Including the blank space ` `, these are the available char.
|
||||
|
||||
` ` `!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_``abcdefghijklmnopqrstuvwxyz{|}~`
|
||||
|
||||
### Implicit vs Explicit Statements
|
||||
Simple one worded phrases may employ the implicit method of `echo` statements.
|
||||
|
||||
**Example 1:**
|
||||
`echo Hello`
|
||||
|
||||
**Example 2:**
|
||||
`echo Hello_World`
|
||||
|
||||
There are limitations for phrases containing certain char, including ` ` `-#$%`
|
||||
|
||||
Explicitness necessitates the usage of quotation marks `" "`.
|
||||
|
||||
**Example 3:**
|
||||
|
||||
Incorrect: `echo Hello World`
|
||||
|
||||
Correct: `echo "Hello Word"`
|
||||
|
||||
### Skipping lines
|
||||
`\n`
|
||||
|
Loading…
x
Reference in New Issue
Block a user