Skip to content

Commit dc03694

Browse files
committed
New Template Test.java
1 parent b90f1cc commit dc03694

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

templates/Test.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import org.json.JSONObject;
2+
public class Test {
3+
public static void main(String args[]){
4+
JSONObject jo = new JSONObject("{ \"abc\" : \"def\" }");
5+
System.out.println(jo.toString());
6+
}
7+
}

templates/Test.java.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const config = {
2+
files: ["lib/json-20210307.jar"],
3+
commands: [],
4+
repos: ["https://github.com/stleary/JSON-java"],
5+
descriptions: [
6+
"To see the license please go to: https://github.com/stleary/JSON-java/blob/master/LICENSE",
7+
],
8+
};
9+
10+
module.exports = config;

0 commit comments

Comments
 (0)