@@ -506,21 +506,21 @@ write("Hello "; user; "!");
506506
507507Escape sequences start with ` \ ` and represent special characters.
508508
509- | Sequence | Name | Description |
510- | ----------| --------------------| ---------------------------------------------------------------------------------------- |
511- | ` \a ` | Alarm or Beep | Generates a bell sound. |
512- | ` \b ` | Backspace | Moves the cursor one place backward. |
513- | ` \f ` | Form Feed | Moves the cursor to the start of the next logical page. |
514- | ` \n ` | New Line | Moves the cursor to the start of the next line. |
515- | ` \r ` | Carriage Return | Moves the cursor to the start of the current line. |
516- | ` \t ` | Horizontal Tab | Inserts whitespace and moves the cursor accordingly. |
517- | ` \v ` | Vertical Tab | Inserts vertical space. |
518- | ` \\ ` | Backslash | Inserts the backslash character. |
519- | `\` ` | Single Quote | Displays a single quotation mark. |
520- | ` \' ` | Single Quote | Displays a single quotation mark. |
521- | ` \" ` | Double Quote | Displays double quotation marks. |
522- | ` \ooo ` | Octal Number | Represents an octal number. |
523- | ` \xhh ` | Hexadecimal Number | Represents a hexadecimal number. |
509+ | Sequence | Name | Description |
510+ | ----------| --------------------| ---------------------------------------------------------|
511+ | ` \a ` | Alarm or Beep | Generates a bell sound. |
512+ | ` \b ` | Backspace | Moves the cursor one place backward. |
513+ | ` \f ` | Form Feed | Moves the cursor to the start of the next logical page. |
514+ | ` \n ` | New Line | Moves the cursor to the start of the next line. |
515+ | ` \r ` | Carriage Return | Moves the cursor to the start of the current line. |
516+ | ` \t ` | Horizontal Tab | Inserts whitespace and moves the cursor accordingly. |
517+ | ` \v ` | Vertical Tab | Inserts vertical space. |
518+ | ` \\ ` | Backslash | Inserts the backslash character. |
519+ | `\` ` | Single Quote | Displays a single quotation mark. |
520+ | ` \' ` | Single Quote | Displays a single quotation mark. |
521+ | ` \" ` | Double Quote | Displays double quotation marks. |
522+ | ` \ooo ` | Octal Number | Represents an octal number. |
523+ | ` \xhh ` | Hexadecimal Number | Represents a hexadecimal number. |
524524
525525### Predefined Functions
526526
0 commit comments