Skip to content

Commit 58bc7da

Browse files
authored
Update README.md
1 parent 6747f60 commit 58bc7da

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ Both input and outputs are the default System.in and System.out, but you can def
1313
Process p = new Process(true);
1414
p.addSystemOutput();
1515
p.addInput(System.in);
16-
p.execute("println \"Hello World\"", false); //If the process should be executed in a separate thread.
16+
p.execute("println \"Hello World\"", false);
1717
p.execute(new File("path_to_file"), true);
1818
```
19-
You can also execute the script from the command line with the raw jar file.
19+
You can also execute the script from the command line with the raw jar file.<br>
20+
This example will execute the command "help"
2021
> java -jar devscript_1.8.3.jar -e "version"
2122
2223
Command line arguments are:<br>
@@ -30,7 +31,6 @@ In this big section, I will try to bring you near the usage and capabillities of
3031
## Commands
3132

3233
### Data Types
33-
*This section is only important, if you want to implement your own library if not, you can skip this section*<br>
3434
There are 6 main data types: _STRING, BOOLEAN, BLOCK, DICTIONARY, ARRAY, OBJECT_ (OBJECT is any Java object)<br>
3535
There are also 4 sub- data types: _ANY, ARRAY_ANY, INTEGER, FLOAT, CONTINUE_<br>
3636
Sub- data types are not considered as 'real' data types. They are only important in specific situations<br>

0 commit comments

Comments
 (0)