minus-squaretheangeryemacsshibe@alien.topBtoLisp@communick.news•Which language that is not a lisp or lisp dialect is closest to lisp?linkfedilinkEnglisharrow-up1·1 year agoBehold, a Lisp: (identification-division (program-id :hello-world)) (procedure-division (main (display "Hello, world!") (stop run))) linkfedilink
minus-squaretheangeryemacsshibe@alien.topBtoLisp@communick.news•Which language that is not a lisp or lisp dialect is closest to lisp?linkfedilinkarrow-up1·1 year agoISWIM linkfedilink
minus-squaretheangeryemacsshibe@alien.topBtoLisp@communick.news•Fibbonaci of 39 speed test.linkfedilinkEnglisharrow-up1·1 year agoWithout type declarations I have CCL computing (fib 39) in 0.365 seconds and (fib 39) in 0.743 seconds. This is because CCL inlines the fixnum case for generic addition, and SBCL does not. linkfedilink
Behold, a Lisp: