Segmentation Fault using [cmd][/cmd]

Q&A's, tips, howto's
Locked
newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Segmentation Fault using [cmd][/cmd]

Post by newdep »

Linux newlisp 8.5.7


Some Segmentation Fault scenarios using [cmd][/cmd]
Im not using newlisp -p mode just plain console.


newLISP v.8.5.7 on Linux, execute 'newlisp -h' for more info.

> [cmd]
(define (self error)
(println "nothing important"))
[/cmd]
(lambda (error) (println "nothing important"))
> [cmd]
(define (self error)
(println "nothing important"))



[/cmd]
Segmentation fault




> [cmd]
(define (duh)
(println "nothing happens?"))
[/cmd]
Segmentation fault




> [cmd]
(define (self error)
(println "duh?"))
[/cmd]
(lambda (error) (println "duh?"))
missing parenthesis : "...(define (define (self (println \"duh?\"))\n"

> [cmd]
Segmentation fault
-- (define? (Cornflakes))

Locked