Skip to content

Commit 2528e60

Browse files
authored
Merge pull request #634 from JanitSri/update-README
updated the README to include commands for Unix systems
2 parents 4e601fd + 9f19c22 commit 2528e60

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jar cf json-java.jar org/json/*.class
5454

5555
*Compile a program that uses the jar (see example code below)*
5656
````
57-
javac -cp .;json-java.jar Test.java
57+
javac -cp .;json-java.jar Test.java (Windows)
58+
javac -cp .:json-java.jar Test.java (Unix Systems)
5859
````
5960

6061
*Test file contents*
@@ -71,7 +72,8 @@ public class Test {
7172

7273
*Execute the Test file*
7374
````
74-
java -cp .;json-java.jar Test
75+
java -cp .;json-java.jar Test (Windows)
76+
java -cp .:json-java.jar Test (Unix Systems)
7577
````
7678

7779
*Expected output*

0 commit comments

Comments
 (0)