All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.darwinsys.notepad.Main Maven / Gradle / Ivy

package com.darwinsys.notepad;

import java.io.IOException;

public class Main {
	public static void main(String[] args) throws IOException {
		if (args.length == 0)
			new Notepad();
		else {
			for (String arg : args) {
				new Notepad().doLoad(arg);
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy