DemonstrationTest

 avatar
unknown
java
3 years ago
334 B
4
Indexable
import java.util.Scanner;
public class DemonstrationTest
{
	public static void main( String args[] )
	{
		Scanner input = new Scanner( System.in );
		Demonstration app_demo = new Demonstration();
		System.out.print( "Enter file or directory name here: " );
		app_demo.analyze_path( input.nextLine() );
		input.close();
	}
}
Editor is loading...