Homoiconicity means that a language uses the same syntax for data structures as it does for statements and declarations. For example, Lisp processes list structures and is constructed with lists of symbols and other lists. XSLT transforms XML data and is written as valid XML.

learn more… | top users | synonyms

15
votes
4answers
2k 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 ...
5
votes
3answers
403 views

Homoiconic type theory

Lisp has the property of being homoiconic, that is, the representation of code used by the language implementation (lists) is also available to, and idiomatically used by, programs that want to ...
6
votes
2answers
293 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 ...
0
votes
6answers
167 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) { ...
2
votes
1answer
65 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 | ...
8
votes
7answers
588 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) ...
20
votes
10answers
2k 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 ...
1
vote
4answers
299 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 ...
82
votes
12answers
12k 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 ...
56
votes
19answers
8k views

Practical example of Lisp's flexibility? [closed]

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 ...