From a791408c568e7f199e0a4fad75b83d57a3eb0592 Mon Sep 17 00:00:00 2001 From: BratPfanneTV <39345937+BratPfanneTV@users.noreply.github.com> Date: Sat, 20 Oct 2018 10:34:29 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 79fd11f..094c4c8 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ the directory to the PATH-Environment-Variable. | PRINT | v1 | *stdout* **string** | `PRINT ` | Prints the **String**. Only difference to the built-in `echo` is that no newline is added at the end. | | READKEY | v3 | *errorlevel* **keyCode** | `READKEY ` | Waits **MS** Milliseconds for a keypress, then returns 0. The returned number when a key is pressed consists of two values:
Example: `7068`
The *68* stands for the KeyCode of the pressed key, in this case *D*. The 7 at the beginning stands for the Modifier-buttons that were pressed:
`0 - None, 1 - Alt, 2 - Shift, 3 - Alt+Shift, 4 - Control, 5 - Control+Alt, 6 - Control+Shift, 7 - Control+Alt+Shift`.
These values can be extracted using *Division* and *Modulo*. | | RENDER-GRAPH | v5 | *stdout* **graph** | `RENDER-GRAPH ` | Renders a mathematical term to a graph. *y=* is not required. | -| RENDER-TABLE | v5 | *stdout* **table**
*errorlevel* **selection** | `RENDER-TABLE ...` | Renders a table which width automatically changes depending on the contents. The **cells** are seperated by spaces, and the amount of given cells has to be exactly **rows**\***cols**. Also, the cells should be given in a vertical order. Example:

1 2 3 4 5 6 7 8 9 =
147
258
639

Available Modes:
`SHOW` - Just shows the table.
`SELECT` - Allow the user to select a table cell and returns the number of it in the errorlevel.
`EMU-SELECT` - Adds the extra spacing each cell has in `SELECT`, but doesn't actually let the user select something. | +| RENDER-TABLE | v5 | *stdout* **table**
*errorlevel* **selection** | `RENDER-TABLE ...` | Renders a table which width automatically changes depending on the contents. The **cells** are seperated by spaces, and the amount of given cells has to be exactly **rows**\***cols**. Also, the cells should be given in a vertical order. Example:

1 2 3 4 5 6 7 8 9 =
147
258
369

Available Modes:
`SHOW` - Just shows the table.
`SELECT` - Allow the user to select a table cell and returns the number of it in the errorlevel.
`EMU-SELECT` - Adds the extra spacing each cell has in `SELECT`, but doesn't actually let the user select something. | | SLEEP | v3 | *none* | `SLEEP ` | Pauses the script for **MS** Milliseconds. | | STARTINVISBLE | v3 | *none* | `STARTINVISIBLE