Talk:M-expression
Computing Start‑class Low‑importance | ||||||||||
|
This is the talk page for discussing improvements to the M-expression article. This is not a forum for general discussion of the article's subject. |
Article policies
|
Find sources: Google (books · news · scholar · free images · WP refs) · FENS · JSTOR · TWL |
Mathematica
It is perhaps notable that the computer algebra system Mathematica uses the M-Expression syntax as its "generic" representation of data and functions. —Preceding unsigned comment added by JasticE (talk • contribs) 22:08, 17 November 2004
What is an M-expression
This page doesn't say what an M-expression is. — Preceding unsigned comment added by 81.164.106.200 (talk) 18:42, 14 February 2013 (UTC)
M-expressions are homoiconic
Given that Lisp encoded as S-expressions is homoiconic, and that M-expressions form a one-to-one, invertible correspondence with their equivalent S-expressions, it should then be obvious that M-expressions are thus also homoiconic. Therefore, no expressive power is lost by the utilization of M-expression syntax compared to S-expression syntax.
External links modified
Hello fellow Wikipedians,
I have just modified one external link on M-expression. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:
- Added archive https://web.archive.org/web/20080516210916/http://community.computerhistory.org/scc/projects/LISP/book/LISP%201.5%20Programmers%20Manual.pdf to http://community.computerhistory.org/scc/projects/LISP/book/LISP%201.5%20Programmers%20Manual.pdf
When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.
This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}}
(last update: 5 June 2024).
- If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
- If you found an error with any archives or the URLs themselves, you can fix them with this tool.
Cheers.—InternetArchiveBot (Report bug) 14:22, 28 May 2017 (UTC)
why 'T' or 't'?
in the table example...
[lessp[x;0] → minus[x]; T → x] (cond ((< x 0) (- x)) (t x))
... why e.g. "(t x)" instead of just 'x' or "(x)"?
(I'm a noob re Lisp.) Abe149 (talk) 04:02, 26 July 2023 (UTC)