We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b90f1cc commit dc03694Copy full SHA for dc03694
templates/Test.java
@@ -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
@@ -0,0 +1,10 @@
+const config = {
+ files: ["lib/json-20210307.jar"],
+ commands: [],
+ repos: ["https://github.com/stleary/JSON-java"],
+ descriptions: [
+ "To see the license please go to: https://github.com/stleary/JSON-java/blob/master/LICENSE",
+ ],
8
+};
9
+
10
+module.exports = config;
0 commit comments