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.
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			85 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			85 B
		
	
	
	
		
			Java
		
	
	
	
	
	
public class Another {
 | 
						|
  public static String whatis() {
 | 
						|
    return "Testing";
 | 
						|
  }
 | 
						|
}
 |