Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

> How is that represented in lisp (as a list you say?)

I'm only a beginner in lisp too, but it as simple as

    (defun add-numbers (a b) (+ a b))
if you look at it as "everything between () is a list" then you'll find the above code is actually:

    [word word [word word] [word word word]]
to get it to multiply numbers instead, you'd just get the last item of the list `(+ a b)` -- replace the first item `+` with `*` (using other list functions, etc..) and then re-evaluate the entire list again,

So now your function will multiply values instead of adding them..

The "power" aspect comes from the fact that we use "other list functions" to change the code, ie: code is data that we can manipulate.

note, probable errors, like I said, I'm new



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: