package
0.0.0-20241128200316-6d5241813ae7
Repository: https://github.com/vishalvivekm/gopher.git
Documentation: pkg.go.dev
# README
Notepad
A basic notepad app.
Commands
create <your_note>
: Creates a new note with the specified content.
list
: Lists all the notes.
clear
: Clears all the notes.
exit
: Exits the application.
Example
Enter the maximum number of notes:
10
Enter a command and data:create This is a sample note
[OK] The note was successfully created
Enter a command and data:create Another note
[OK] The note was successfully created
Enter a command and data:list
[Info] 1: This is a sample note
[Info] 2: Another note
Enter a command and data:clear
[OK] All notes were successfully deleted
Enter a command and data:list
[Info] Notepad is empty
Enter a command and data:exit
[Info] Bye!