Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

53
votes
11answers
8k views

What makes lisp macros so special

Reading Paul Graham's essays on programming languages one would think that Lisp macros are the only way to go. As a busy developer working on other platforms I have not had the privledge of using lisp ...
46
votes
19answers
6k views

Practical example of Lisp's flexibility?

Someone is trying to sell Lisp to me, as a super powerful language that can do everything ever, and then some. Can anyone provide a practical code example of Lisp's power?(Preferably alongside ...
16
votes
9answers
1k views

Can a compiled language be homoiconic?

By definition the word homoiconic means: Same representation of code and data In LISP this means that you could have a quoted list and evaluate it, so (car list) would be the function and (cdr ...
10
votes
3answers
1k views

Homoiconic and “unrestricted” self modifying code + Is lisp really self modifying?

I will be forward in admiting that my knowledge of Lisp is extremely minimal. However I am extremely interested in the language and plan to begin seriously learning it in the near future. My ...
8
votes
7answers
471 views

Traversing Scheme function as a list

Isn't it possible to treat functions in Scheme as any other list? Basically, what I want do to is something like this: (define (foo) "hello") (cdr foo) ; or similar, should return the list ((foo) ...
3
votes
1answer
152 views

What exactly does homoiconicity mean?

I was trying to understand the Wikipedia article on homoiconity, but it's too verbose and does not explain the main theory behind the word concisely. I should add that I'm not a native English speaker ...
2
votes
1answer
53 views

Homoiconicity and SQL

I'm currently using emacs sql-mode as my sql shell, a (simplified) query response is below: my_db=# select * from visit limit 4; num | visit_key | created | ...
1
vote
4answers
267 views

Where do I get more information on Homoiconicity?

I have been experimenting with functional programming and I still dont understand the concept. Do you guys know any good books or tutorials or examples that discuss this concept? Or if you could show ...
0
votes
6answers
130 views

Are there any programming languages that consider functions as data structures that can be operated on?

I wrote the following function as a part of a jQuery plugin I am developing: $.fn.append2 = function(collection, callback) { var $this = this; $.each(collection, function(key, value) { ...