Message 1 of 7
IF statement error, how lisp can go through the IF contain error and keep run
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello guys,
I have a lisp and it contain a lot of If. When the If catch error in side, the lisp will break and stop.
how i can make lisp keep running if the If statement have error in side.
Example.
(if ( = 1 a)
then do
( get b) ; here get b is a text or an object like line,
( + a b) ; command will error
)
; after the IF above is about 4 another IF statement. They will not run because the IF above is error.