Add an example of two java files, Main.java and Another.java, where Main.java depends on Another.java. This is part of a larger example of attempting to use Nix to package these. Also ignoring the *.class files that `javac <filename>` outputs.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			174 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			174 B
		
	
	
	
		
			Java
		
	
	
	
	
	
public class Main {
 | 
						|
  public static void main(String[] args) {
 | 
						|
    System.out.println(System.getProperty("java.class.path"));
 | 
						|
    System.out.println(Another.whatis());
 | 
						|
  }
 | 
						|
}
 |