Remove //java

When I started working on //clojure, which I also deleted, I wanted to
learn more about how to package Java projects using Nix. This was a part
of that study.
This commit is contained in:
William Carroll 2020-04-05 16:13:31 +01:00
parent 81b59e9ddd
commit 5cc9bf7dce
2 changed files with 0 additions and 11 deletions

View file

@ -1,5 +0,0 @@
public class Another {
public static String whatis() {
return "Testing";
}
}

View file

@ -1,6 +0,0 @@
public class Main {
public static void main(String[] args) {
System.out.println(System.getProperty("java.class.path"));
System.out.println(Another.whatis());
}
}