A notepad/text editor for Desktop, developed using Java Swing.
To run the program, firstly navigate to the src folder
cd src
Compile the Notepad.java file
javac Notepad.java
Execute
java Notepad
Download the latest release from the GitHub page under the "packages" section
OR
Compile the program and then package the source code into a jar file
cd src javac Notepad.java
jar cvf Notepad.jar Notepad *.class
Run the jar file
java -jar Notepad.jar