TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How Lisp way of programming is better than that of other languages?

3 pointsby bhnmmhmdalmost 7 years ago

1 comment

dalyalmost 7 years ago
You have a problem to solve. You can state the problem in your native language (e.g. English). You need a computer program that solves it.<p>You can use a low-level programming language (e.g. assembler) which is very close to the machine. Or you can use a high-level programming language that is very close to the problem statement (e.g. Planner). Lisp allows you to do both at once. You can write something like (integrate (car x))... that is, you take the 0th offset from a memory pointer (car) and compute a high level function (integrate). Lisp is &quot;clay for the mind&quot;. You can shape it to fit your problem.<p>This is the &quot;impedence mismatch&quot; problem (like hooking a soda straw to a fire hose). Most programming languages are a mismatch of your problem and a mismatch of your solution. Lisp allows you to alter Lisp to fit both the problem and the solution. It is a &quot;programmable programming language&quot;.