Post Reply 
How much LISP is in RPL?
04-21-2014, 11:42 PM
Post: #2
RE: How much LISP is in RPL?
(04-21-2014 08:58 PM)Matt Agajanian Wrote:  How much (and to what capacity) of LISP is in the RPL for both the 48GX and 50G?

Lisp uses prefix notation, so instead of 3 4 + they write (+ 3 4). Thus regarding the syntax there's not much in common. You see a lot of parentheses leading to the famous quote by Larry Wall:
Quote:Lisp has all the visual appeal of oatmeal with fingernail clippings mixed in.

However both 48GX and 50G provide some operations on lists e.g. STREAM which acts similar to reduce:
Code:
(reduce #'+ '(1 2 3 4)) => 10

And then functions are first-class citizens both in Lisp and RPL which is always nice.

Cheers
Thomas
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
How much LISP is in RPL? - Matt Agajanian - 04-21-2014, 08:58 PM
RE: How much LISP is in RPL? - Thomas Klemm - 04-21-2014 11:42 PM



User(s) browsing this thread: 1 Guest(s)