Friday, June 29, 2018

Greeter in LISP

A simple program to ask the user to give user name and then our program will greet the user using LISP as our programming language.

I am using Common LISP is open source and free to download in the Internet.

You can get the latest CLISP for Windows from here - https://sourceforge.net/projects/clisp/files/latest/download

 I am currently accepting programming work, it project, school 

programming projects , thesis and capstone projects, IT consulting 

work, computer tutorials and web development work kindly contact me in the following email address for further details.  If you want to advertise in my website kindly contact me also in my email address also. Thank you.
My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.


Sample Program Output


Program Listing

greeter.lisp

(defun Greeter()
   (terpri)
   (format t "Greeter in LISP ~%")
   (format t "~%~%")
   (format t "Created By Mr. Jake R. Pomperada, MAED-IT")
   (format t "~%~%")
   (princ "What is your name?  ")
   (setq user_name (read))
   (format t "~%")
   (format t "Hello ~s How are you today?  " user_name)
   (format t "~%~%")
   (format t "End of Program")
)
(Greeter)

No comments:

Post a Comment