wisemonkeys logo
FeedNotificationProfileManage Forms
FeedNotificationSearchSign in
wisemonkeys logo

Blogs

Note Taker App

profile
Aarti Rathod
Jul 16, 2025
0 Likes
0 Discussions
0 Reads



(defvar *notes* '()

"Global list to store text notes.")


(defun add-note ()

"Add a new text note."

(format t "Enter your note: ")

(let ((note (read-line)))

(push note *notes*)

(format t "๐Ÿ“ Note added: ~A~%" note)))


(defun list-notes ()

"Display all saved notes."

(if *notes*

(progn

(format t "~%๐Ÿ“‹ Your Notes:~%")

(dolist (note (reverse *notes*))

(format t "โ€ข ~A~%" note)))

(format t "๐Ÿ“ญ No notes found.~%")))


(defun clear-notes ()

"Clear all saved notes."

(setf *notes* '())

(format t "๐Ÿงน All notes cleared.~%"))


(defun show-menu ()

"Displays the options menu."

(format t "~%========= NOTE TAKER =========~%")

(format t "1. Add Note~%")

(format t "2. View Notes~%")

(format t "3. Clear Notes~%")

(format t "4. Exit~%")

(format t "Choose an option (1-4): "))


(defun note-taker ()

"Main loop for the note taker app."

(loop

(show-menu)

(let ((choice (read)))

(case choice

(1 (add-note))

(2 (list-notes))

(3 (clear-notes))

(4 (progn (format t "๐Ÿ‘‹ Exiting Note Taker. Goodbye!~%") (return)))

(t (format t "โŒ Invalid option. Try again.~%"))))))



Comments ()


Sign in

Read Next

Game via listing method

Blog banner

Never give up

Blog banner

Article on different management system

Blog banner

Shoulders

Blog banner

MODERN OPERATING SYSTEM

Blog banner

What is process

Blog banner

Mumbaicha Dabbawalla

Blog banner

Service Transition Process in ITSM

Blog banner

Deadlocks

Blog banner

DIGITAL ECONOMY

Blog banner

MY FIRST BLOG?

Blog banner

File system

Blog banner

Facebook Shut Down an AI Program!!! Facebook AI bots became Terminators???

Blog banner

Message Passing in OS

Blog banner

Disk Management

Blog banner

DMZ: Your Secret Weapon for Data Security

Blog banner

Cloud Computing

Blog banner

Answer

Blog banner

Modern Operating System - Khush Bagaria

Blog banner

Big Data Architecture

Blog banner

RACI model in IT services

Blog banner

Pandas Matrix Applications

Blog banner

A-B-C of Networking: Part-1 (Basics)

Blog banner

GEOLOGY AND GEO-TECTONIC FRAME WORK OF WESTERN BASTAR CRATON

Blog banner

Instagram Features in 2023 That Will Leave You Stunned!

Blog banner

Windows Operating System

Blog banner

Virtual Machine

Blog banner

Secure Hypertext transfer protocol

Blog banner

operating system

Blog banner

Life of an army person

Blog banner

The Five Steps of Data Science

Blog banner

Pipedrive

Blog banner

Modern Operating System

Blog banner

Ola

Blog banner

Cache Memory

Blog banner

Decision Tree: A Diagram Model

Blog banner

How to Encrypt and Decrypt Using GNU PGP

Blog banner

Scheduling

Blog banner

Memory Management

Blog banner

Efficiency of SQL Injection Method in Preventing E-Mail Hacking

Blog banner

Uniprocessor and Types

Blog banner

Disk scheduling

Blog banner