I didnt find any forum for that so I am posting here......
The problem is that I want to make a menu driven program in LISP.......
I have written all the functions that will be there in the menu options but I do not know how to implement a case statement in LISP........
I searched a lot for this on net but in vain..........
My guess is that the program should look like this.......
and so on.......
plz somebody tell me how do I implement this case statement...... ....
The problem is that I want to make a menu driven program in LISP.......
I have written all the functions that will be there in the menu options but I do not know how to implement a case statement in LISP........
I searched a lot for this on net but in vain..........
My guess is that the program should look like this.......
Code:
defun function1 ( parameters ...)
(
.
.
.
)
defun function2 ( parameters ...)
(
.
.
.
)
defun function3 ( parameters ...)
(
.
.
.
)
case
1: function1
2: function2
and so on.......
plz somebody tell me how do I implement this case statement...... ....
Comment