Why LISP Is The Language of Legends

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ก.ค. 2024
  • In this video I describe why LISP is a good programming language, and why so many people have called it special or legendary.
    I also make some comparisons
    lisp vs java
    lisp vs python
    I talk about the history of lisp, its parentheses and homoiconic syntax, and how to write macros, programs which write other programs. This lets you modify the language of lisp itself
    00:00 Intro
    0:50 History
    2:44 Macros and Magic

ความคิดเห็น • 117

  • @jackoliver2495
    @jackoliver2495 ปีที่แล้ว +134

    Wouldn't be a LISP video without a microphone that sounds straight out of 2004

  • @edwardodson2867
    @edwardodson2867 ปีที่แล้ว +40

    Been an AutoCAD operator in Civil Engineering since 1987. My only experience with coding until then was a FORTRAN class in junior college where we had to turn in our assignments on a Hollerith card deck, which would be run overnight on a computer that took up an entire building. I hated those stupid punch card machines. Then, the engineering company I worked for bought 5 AutoCAD seats and shiny new 286s to run them. I got picked to be in the first wave and it was amazing. Being a natural tinkerer, I soon dug deep enough in the docs to discover AUTOLISP. I fell in love. The structure of LISP as a tool to make AutoCAD do whatever I wanted gave such a feeling of power. I spent most of my personal time creating LISP routines to automate the drudgery of drawing plans, and I soon became the office Guru. For anyone who has limited experience coding, LISP is something you should take a look at before any other language.

  • @nERVEcenter117
    @nERVEcenter117 ปีที่แล้ว +34

    I've been lucky enough to have the opportunity to build a couple of backend server applications in Clojure. It's always been a joy. The architecture is always just a tree of expression calls, which makes holding the model of the architecture in my head trivially easy, and because Lisps prefer short functions, my programs end up as a DSL composing the prose of my program, with virtually no boilerplate. Lisp takes the "code reuse" OOP fanatics rave about and pushes it to 9000 without even trying, and you don't even need objects to do it.

    • @PixelOutlaw
      @PixelOutlaw ปีที่แล้ว +9

      And if you wanted objects you can grow them yourself out of a closure that accepts get/set messages and responds accordingly. :)
      That's a fun exercise people can do to really test their knowledge of closures in lisps that support them. You'd then write a general closure making macro that saves you lots of work in defining a new "thing" in your system.

  • @shaunkruger
    @shaunkruger ปีที่แล้ว +24

    I remember learning lisp around 2005 after reading some Paul Graham essays and it bent my mind it all the best ways.
    This video was great.

    • @alessandrobertulli425
      @alessandrobertulli425 ปีที่แล้ว +2

      Do you remember which one? The one when he explained the webserver he and his mate made in CL?

  • @tachmonite37
    @tachmonite37 ปีที่แล้ว +8

    I haven't heard anyone break it down so succinctly! Thank you.

  • @6ujkyujhrbdfgjy5
    @6ujkyujhrbdfgjy5 ปีที่แล้ว +21

    I really like this video, full of great content. I think a priority moving forward for your videos would be to get a new mic, or possibly config how you use it.

  • @hydralisk98
    @hydralisk98 ปีที่แล้ว +3

    I love this content, summarizes the vibe I get from this linguistic family very well. I am still a newbie to this system but whilst looking at ZealOS and the early history of the LISP family (allowing it to be very dense compact for retro machines), I can only imagine my retro computer system project thing I am still designing rn to operate with some dialect of such with the REPL and all. So ya, I research history down to the 1910s for my quest as to liberate myself and hopefully contribute something of empowering value back to the world.
    Stay awesome!

  • @morgengabe1
    @morgengabe1 ปีที่แล้ว +1

    this video was pretty eye opening!

  • @RecursionIs
    @RecursionIs ปีที่แล้ว +5

    I can't disagree, Lol
    I loved the overview; excited for more :D

  • @reycorbie3581
    @reycorbie3581 ปีที่แล้ว +1

    awesome! more please!

  • @Jaryt
    @Jaryt ปีที่แล้ว

    great vid! not gonna lie, almost clicked away because of the echo in the beginning, but glad I stayed. I did a project in clojure at my last job. Didn't do a good job breaking up my functions, and that thing became parenthesis soup. Made me love functional programming, though!

  • @doowi1182
    @doowi1182 ปีที่แล้ว

    Great video! Great explanation!

  • @stretch8390
    @stretch8390 2 หลายเดือนก่อน +1

    The python shade haha great video.

  • @JerryRutten
    @JerryRutten ปีที่แล้ว

    A very nice explanation, and short.

  • @D4no00
    @D4no00 11 หลายเดือนก่อน

    Nice video, I am writing professionaly elixir for a few years now and we have macros there too. To make things eaiser to understand for others, say that the macro expansion is the first stage of compilation and then the second is the actual compilation that generates IL or whatever the hell lisp compiler does.

  • @idkidk9204
    @idkidk9204 ปีที่แล้ว +1

    Nice, that's very smart of lisp developers

  • @DomainObject
    @DomainObject ปีที่แล้ว +1

    Awesome video! Thanks.
    LISP. Language of the Gods.

  • @darkeyedwitch
    @darkeyedwitch ปีที่แล้ว +1

    loved it!

  • @praveenraj9713
    @praveenraj9713 6 หลายเดือนก่อน

    Wonderful!

  • @openroomxyz
    @openroomxyz ปีที่แล้ว

    Thanks!

  • @alejandrorangel9509
    @alejandrorangel9509 ปีที่แล้ว +1

    Thanks man

  • @PixelOutlaw
    @PixelOutlaw ปีที่แล้ว +30

    Unfortunately the "just use maps bra" approach is sometimes preventing people from extending the language. They get stuck in a false trichotamy of "code" "data" and "language" which is baggage from other languages. In the end, you should end up with a language made of language that describes the problem very clearly using mostly new well documented symbols. Instead we get a fleet of JSON nibblers and a very rigid vector/map parser and the same map literals/arrow macros pasted over and over again with small tweaks.

  • @badatpseudoscience
    @badatpseudoscience ปีที่แล้ว +3

    I love LISP!

  • @timog7358
    @timog7358 ปีที่แล้ว

    great video

  • @Yupppi
    @Yupppi 6 หลายเดือนก่อน +1

    The python comment was funny. We also managed to create Rust later that actually does accomplish many features of both successfully and is impossible to write and get to compile. But when/if it does, it's beautiful and the code looks nice on top of running fast.
    I can see why people used lisp. And I can see why people don't use lisp. Especially I can see why people wouldn't read other lisper's programs (because when you create a new language inside a language, you essentially create a barrier where you're only technically using the language you announce using, the other person can't speak it). I really wish the comparison in 2020's was not java though. I think something else would be more representative and universal of the basic structure differences. Although can't argue that there's been a lot of java in the last 10 years or so.

  • @AramisWyler
    @AramisWyler ปีที่แล้ว +6

    lol at 2:00!

    • @mmlvx
      @mmlvx ปีที่แล้ว +1

      "... we managed to create a language that accomplishes neither." 😆 🤣

  • @JH-pe3ro
    @JH-pe3ro 3 หลายเดือนก่อน

    I've converged on the "What They Teach In Harvard Business School/What They Don't Teach In Harvard Business School" approach to programming: Use Forth to talk to a real machine. Use Lisp to avoid talking to a real machine. Use both together and you have all of programming.

    • @aoeu256
      @aoeu256 2 หลายเดือนก่อน

      You can have a readmacro that you can bind to a key on emacs or whatever editor to be able to change S-expressinos to postfix and back again. Postfix is nice if you see the stack so you can see the intermediate values, but LISP is better for reading. Also you can use Chinese symbols and put the words in a tiny ruby script and maybe change the ruby script to give you sample test values seeing how they move through your code.

  • @Jankoekepannekoek
    @Jankoekepannekoek ปีที่แล้ว

    5:55 you can write compiler plugins in Java tho.

  • @jmisc
    @jmisc 8 หลายเดือนก่อน

    1:58 i didnt expect that,lol

  • @jessstuart7495
    @jessstuart7495 10 หลายเดือนก่อน

    3:00 I use Python 3 these days, but I still find myself slipping back into Python 2 syntax on occasion. Unlearning is hard.

  • @steveheyden9219
    @steveheyden9219 ปีที่แล้ว

    Great video. The sound is not typical yt but it totally fits with the spirit of the presentation. Thanks

  • @OctaviusPelagius
    @OctaviusPelagius ปีที่แล้ว

    If videos were websites this one would be Geocities... Also good content but I spent more time playing with the volume to compensate for the different devices and settings the creator must've used for the different segments that I would've certainly absorbed way more of the knowledge treasure otherwise.

  • @christopheroliver148
    @christopheroliver148 4 หลายเดือนก่อน +1

    BTW: I like the addition "for better or for worse." Writing well in Lisp requires taste. It's way too easy to make a real dog's breakfast of ill-considered macros. N.B. I am by no means considering myself as exemplary here. I'd have to be firing on all cylinders if I were to contemplate writing a macro for anything but my own consumption; I'm generally too stupid to do better.

  • @aarohgokhale8832
    @aarohgokhale8832 ปีที่แล้ว +4

    6:07 lmao

  • @spacelem
    @spacelem 2 หลายเดือนก่อน

    Julia might fit the place where Python failed. It looks a lot like Python (although with end tags instead of syntactic whitespace, and n-dim arrays are easy to work with), but it has powerful macros, inspired directly by Lisp. Plus it has strong performance.

  • @curls6778
    @curls6778 ปีที่แล้ว +7

    The thing that keeps me from learning lisp is just the horrible tooling. There are 20 different tools and tutorials for everything and everyone of them is deprecated or outdated and does not work. Same goes for the libraries. Whatever the problem is, the solution to it existed 15 years ago, but is not available anymore.

    • @sammytalks7215
      @sammytalks7215  ปีที่แล้ว +5

      I've had this experience a little bit with common lisp, but I've had much better luck with Clojure. It runs on the JVM, so worst-case-scenario, you can use a Java library if a good clojure-based one is mising

    • @curls6778
      @curls6778 ปีที่แล้ว +1

      @@sammytalks7215 True but I had some issues there as well (especially with using local java libraries) and I just can’t get over the terrible error messages in clojure. Not to mention that the clojure (i. e. the jvm) just stops instead of giving you the option of changing a variable/function definition ect.

    • @freesoftwareextremist8119
      @freesoftwareextremist8119 ปีที่แล้ว +3

      The tooling is actually incredibly good. Just not very discoverable. Emacs+sly+sbcl+(maybe something like paredit) is a super productive environment. It's just not very "modern" and accessible. The setup is also quite involved and unless you are "initiated" it's hard to start on your own.

    • @Yupppi
      @Yupppi 6 หลายเดือนก่อน

      So if you happen to possess the sacred words of the secret cult, tooling is good and productive (just hard to find and get working).

  • @nempk1817
    @nempk1817 ปีที่แล้ว

    Good Video. 🍷🗿

  • @gavr_sas
    @gavr_sas ปีที่แล้ว +2

    I like the video, but the mic quality really bad

  • @yash1152
    @yash1152 ปีที่แล้ว +1

    3:29 in short: it uses prefix notation, okay, moving on.
    (for those wondering: language using postfix notation is "forth")

  • @gkvikram
    @gkvikram ปีที่แล้ว

    any variants of lisp used in production in say,cutting edge technology development? in fields such as FinTech?.Could you point me to those flavors of lisp.Also,could you a video how to effectively and in short time learn lisp to solve Lisp-specific production load based problems in real world.I dont seem have bandwidth for lot of languages to learn and create fixes for their idiosyncratic "Gotchas" to get things flowing well in production!!.your comments or later indepth technical Vlog or blog would be helpful.You love lisp and you are advocate of it.One more thing to create a big project how many man-hours needed with lisp vs others and maintainability,hirability

    • @sammytalks7215
      @sammytalks7215  ปีที่แล้ว

      There are people using lisp in production, but way fewer than, say, javascript or python. If you are using it, I personally prefer Clojure because it runs on the JVM, and gives you access to existing java libraries. Different people have their own preferences.
      I made a short video on this (th-cam.com/video/YzIdUsZ1p7s/w-d-xo.html), but I'll try to make more content on it.

    • @bakbees
      @bakbees ปีที่แล้ว +3

      Clojure is actually surprisingly often used in FinTech. Best example being nubank, which recently acquired the company of the creator of Clojure.

    • @thewitheredstriker
      @thewitheredstriker 2 หลายเดือนก่อน

      One year late, but the videogame company Naughty Dog also uses Lisp. Jak and Daxter 2 is "99% Lisp" (quoting them directly), and even The Last of Us uses it for scripting.

  • @patocarrasco6266
    @patocarrasco6266 ปีที่แล้ว

    I want to give it a try! From Wikipedia: "Today, the best-known general-purpose Lisp dialects are Common Lisp, Scheme, Racket, and Clojure." Which one should I pick?

    • @sammytalks7215
      @sammytalks7215  ปีที่แล้ว

      I personally use clojure. It runs on the JVM, so you get access to all of the standard java libraries.
      I learn best by doing, and having this library support makes it easier for me to build pragmatic projects.
      They all have their merits, and it depends a little on your interests/learning style, but that's what worked best for me :D

    • @PixelOutlaw
      @PixelOutlaw ปีที่แล้ว +2

      Start with one but explore the others. But, don't explore until you have strong roots in one. :)

    • @j3pl
      @j3pl 4 หลายเดือนก่อน

      I really like Common Lisp, appreciate the hell out of Scheme and Racket, but never got into Clojure. (My Lisp days were around 2004-9.) These days Clojure probably has the best overall support, but Common Lisp and Scheme (and Racket) can teach you things you probably still can't find anywhere else. In fact, you may realize that in various ways most of the languages we use today are still missing features that Lisps had 30+ years ago.

  • @cromwellbostjr.9052
    @cromwellbostjr.9052 6 หลายเดือนก่อน

    Good video, but you kinda lost me in the beginning. I thought Lambda Calculus was a model for a Turing Machine; I didn't know they were separate back then. Can someone enlighten me further?

    • @sammytalks7215
      @sammytalks7215  6 หลายเดือนก่อน

      They were developed as two different ways to mathematically study what was possible on a machine (though Church was Turing's thesis adviser). After some time, they were shown to be _equivalent_ in the sense that each model could be used to implement the other one.
      It's sort of like how Python and Java are two different programming languages, but you can implement a python interpreter in Java, and a Java compiler in Python.

  • @ratfuk9340
    @ratfuk9340 6 หลายเดือนก่อน

    1:56 lol

  • @dionbridger5944
    @dionbridger5944 ปีที่แล้ว +16

    LISP macros are a double edged sword. They make LISP so plastic that you can't really make any assumptions about a LISP program you didn't write yourself and can expect to be learning yet another special sub-flavour of LISP every time you start reading code from a new project. Imperative and non-LISP functional languages have come a long way since the days of PASCAL and FORTRAN and features like polymorphism, multiple dispatch, generics and algebraic datatypes have greatly increased the flexibility of infix languages without burdening the programmer with boilerplate headaches.

    • @fakeaddress
      @fakeaddress ปีที่แล้ว +3

      I tend to think about it differently. While portability is important and bad macros are abound, certain “languages” (including DSLs) are best for certain languages. If you have a less interopable language, then your program is inelegant. The work to understand the language is understanding the problem. Thus in some sense you are front-loading understanding to the problem language, which makes everything else more elegant. It’s very mathematical in that sense.

    • @dionbridger5944
      @dionbridger5944 ปีที่แล้ว +3

      @@fakeaddress I think it comes down to the question of whether DSLs typically actually need novel syntax, or just need terms which reflect the problem domain (in the OOP realm these are usually provided by structs, classes). By analogy, when we invent some novel sub-field of science or engineering we don't feel the need to introduce new rules of grammar to the English language in order to write textbooks about those fields, it almost always suffices simply to introduce new terms of art where necessary.

    • @Chalisque
      @Chalisque ปีที่แล้ว +7

      I liken this problem of Lisp to the halting problem. You can't reliably reason about what a chunk of Lisp code will do, just as you can't reliably tell if an arbitrary program will halt. When it comes to writing robust software, the more you can reason about what code will do the better. But that ability-to-reason comes from making the language do less, not more. (Just like if you want a programming language with which you can solve its halting problem, you have to abandon Turing completeness, and so you get a much weaker language.)

    • @dionbridger5944
      @dionbridger5944 ปีที่แล้ว

      @@Chalisque Very astute analogy!

    • @JaconSamsta
      @JaconSamsta ปีที่แล้ว +2

      Yeah, it's why I cringe whenever I see a Rust macro.
      You have to stop what your doing and dive into how this macro is transforming the code.
      Then you get macros that are calling nested macros and all you want to do is chuck your system out the window.
      I'm sure if it's the modus operandi for a language, you will be viewing things differently, but I'd rather have an expressive language and only need to dive into modifying the ast/token-stream/source in absolute edge-cases, than have that be the default.

  • @FrankJonen
    @FrankJonen ปีที่แล้ว +1

    The Python bit was dirty. 😂

  • @kun1168
    @kun1168 ปีที่แล้ว +67

    Dude, you have to buy a new mic!

    • @sammytalks7215
      @sammytalks7215  ปีที่แล้ว +14

      sorry about the audio quality! I have a yeti mic, but I recorded parts of this one away from my office, so I wasn't using it for the whole video :'( . The second half of the video should have better audio quality.
      Will try to make sure I use it more in future videos

    • @chickenstrangler3826
      @chickenstrangler3826 ปีที่แล้ว +6

      It might be software not hardware.

    • @mmlvx
      @mmlvx ปีที่แล้ว +4

      Meh. I could hear him fine.

  • @ragreenburg
    @ragreenburg ปีที่แล้ว +3

    As much as I wanted to like lisp (specifically elisp), I found the error messages to be not great and that deterred me from spending a ton of time on it.

    • @alessandrobertulli425
      @alessandrobertulli425 ปีที่แล้ว +1

      They are not great imvho, but they can be slightly less of a pain by following a tutorial or a book, for what was my (still evolving) experience

    • @meijiishin5650
      @meijiishin5650 ปีที่แล้ว

      hater's gambit

  • @carlospeixoto4860
    @carlospeixoto4860 ปีที่แล้ว +3

    Great channel, great content. Keep it up man! And get a new fcking mic, google worker has muney fur sure.

  • @platinoob__2495
    @platinoob__2495 ปีที่แล้ว

    Garbage collection should collect itself (I'm a C++ enjoyer)

  • @DaveRoberts308
    @DaveRoberts308 หลายเดือนก่อน

    Lisp will never die. It’s too fundamental. Sure, dialects will change, Maclisp to Scheme to Common Lisp to Clojure, etc., but the core ideas are all still there.

  • @HansBezemer
    @HansBezemer 11 หลายเดือนก่อน +4

    Real programmers use Forth and C. Forth is a lot like LISP though. Instead of ( + 3 4 ) you write 3 4 + (no parenthesis!). Like LISP, it is reflective, so you can redefine the entire language as well. You can even make loops or conditionals WITHOUT using macros.

    • @bixie326
      @bixie326 6 หลายเดือนก่อน +2

      There is no real or fake programmers in this situation.

    • @HansBezemer
      @HansBezemer 6 หลายเดือนก่อน

      @@bixie326 Edsger Dijkstra wants to differ.

    • @thewitheredstriker
      @thewitheredstriker 2 หลายเดือนก่อน

      Glad to see Forth love!

  • @Achy1les
    @Achy1les หลายเดือนก่อน

    Great video. Except that mathematical operators in Lisp are not operators, but functions themselves...

  • @notyourbusiness2672
    @notyourbusiness2672 2 หลายเดือนก่อน

    Sound effect: eavesdropping in a public toilets in the 50's 👌🏻

  • @caddr
    @caddr ปีที่แล้ว +1

    isn't it clojure logo ?, btw please fix your mic

  • @deadman746
    @deadman746 ปีที่แล้ว +1

    I like this, but there's a whole 'nother level of LISP magic. When you learn it, you absorb the design and what for want of a better term I'll call the _philosophy_ of LISP, which makes you a better programmer in other languages. It's also practically impossible *not* to write a LISP interpreter just for the yuks.

    • @aoeu256
      @aoeu256 2 หลายเดือนก่อน

      Do you understand the opposite of code is data is data is code. Whenever you run a function and feed data to it, your data is like a minilanguage and your function is like a mini-interpreter. Just like at LISP eval and randomly delete lines from it, and you'll see that it will have the same structure of your restricited functions and data sometimes.

    • @deadman746
      @deadman746 2 หลายเดือนก่อน

      @@aoeu256 I understand, but one of the things I understand is that brains don't work in an objectivist fashion. _Dogs are mammals_ has a different meaning from _mammals are dogs._ This is why I speak of _,philosophy,_ what coding in a language does to a brain which is not reducible to the mathematics of the language.

  • @darkfoxfurre
    @darkfoxfurre ปีที่แล้ว

    What's your opinion on Rust?

    • @sammytalks7215
      @sammytalks7215  ปีที่แล้ว +4

      haven't used it as heavily as lisp, but my understanding is it's popular as a performance-oriented language with fewer sharp edges.
      so if you truly require the speed of C/C++, but don't want to spend as much time fighting memory leaks and seg-faults, it's oriented to make it harder to shoot yourself in the foot.

  • @georgehauser2643
    @georgehauser2643 11 หลายเดือนก่อน

    not enough boxing

  • @AK-vx4dy
    @AK-vx4dy ปีที่แล้ว

    Are you programmer or standuper ? ;)

    • @sammytalks7215
      @sammytalks7215  ปีที่แล้ว

      haha I guess a little of both.
      I program a lot tho -- I think you need to be in the trenches to make good content :D

  • @thomasvandervliet9387
    @thomasvandervliet9387 10 หลายเดือนก่อน

    Oh god the jab at python was lethal

  • @ernstbelar2771
    @ernstbelar2771 ปีที่แล้ว

    the sound hurts

  • @theidioticbgilson1466
    @theidioticbgilson1466 11 หลายเดือนก่อน +1

    why do programmers call languages that have english syntax "easy for humans to understand"?
    lisp could just be easier for people used to head initial syntax

    • @Yupppi
      @Yupppi 6 หลายเดือนก่อน

      Because once they speak programming, they're no longer like humans and don't think like humans. That's why python is so popular - humans can start programming.

  • @tanko.reactions176
    @tanko.reactions176 4 หลายเดือนก่อน +1

    it feels like the compiler writer of lisp implemented the AST and then was too lazy to continue, called it a day.

    • @victorbitencourt9481
      @victorbitencourt9481 15 วันที่ผ่านมา

      Good to know. I need to learn to make a C compiler next semester and I need a starting point for the subject. Working on a Forth but that's kinda too simple. Maybe I should learn a Lisp like Scheme and try to make one?

  • @nevokrien95
    @nevokrien95 10 หลายเดือนก่อน +1

    Having my languge work the same every single time has alot of advantages.
    It mainly forces people to not do dumb esotric stuff i wouldnt be able to read.
    One of my big issues with cpython is that rarely the c code does weird shit that is simply impossible to debug because it fucked with the interpter itself.
    I had this line in my code once
    Self.b=value
    Assert(self.b==value)
    And it fucking failed...
    This was with trying to overitw huggingfac3 tokenizer...

  • @alphabasic1759
    @alphabasic1759 ปีที่แล้ว

    Java did not derive from FORTRAN

  • @vaibhawc
    @vaibhawc 4 หลายเดือนก่อน

    But you can't create AI using lisp. yet.

  • @east_wood
    @east_wood 5 หลายเดือนก่อน

    my ears

  • @JosifovGjorgi
    @JosifovGjorgi ปีที่แล้ว +5

    Programmer on day 1 : Lisp is so powerful, let write macros and shit
    Programmer on day 20 : Why is this shitty for loop doesn't work as a for loop, let use git blame to find out. Why git blame doesn't work ? I need to speak to the manager to see who change git behavior with shitty Lisp macros
    Manager : You are the only programmer on this shitty Lisp project, you beg me for 1 year to write in Lisp

  • @clintquasar
    @clintquasar ปีที่แล้ว +2

    haha "accomplishes neither"

  • @ihateidiots9484
    @ihateidiots9484 ปีที่แล้ว

    I have been programming in Lisp for 4 years. For simple tasks, lisp is fine, but for medium/complex applications, it's terrible. This language is only suitable for certain types of applications. Trust me, if you choose Lisp, think twice, because chances are there are better alternatives for your task.

    • @fiko2390
      @fiko2390 ปีที่แล้ว

      no lisp its perfect for managing big project or big list of code

    • @mad_cozy
      @mad_cozy 6 หลายเดือนก่อน

      tell that to netflix, apple, nubank, walmart, nasa, all using clojure

    • @aoeu256
      @aoeu256 2 หลายเดือนก่อน

      explain?

  • @barmalini
    @barmalini ปีที่แล้ว +1

    the more I listen to this the stronger my fear of Lisp grows. Thank you, but no thank you. I'd rather be happily spending my days with Python and Java

  • @goutgueule9197
    @goutgueule9197 ปีที่แล้ว

    LoL

  • @sipanmohammed
    @sipanmohammed ปีที่แล้ว

    LISP is a language generator. it is not a language.

  • @Lennyp4
    @Lennyp4 ปีที่แล้ว

    looks like someone hasn’t been eating his python soy 🐍🍲🙄

  • @amorphousblob2721
    @amorphousblob2721 9 วันที่ผ่านมา

    What degenerate dialect of Lisp is this? Oh, it's Clojure, the not-Lisp that only has a small fraction of Lisp's power. The JVM is a ball and chain around Clojure's leg. At least it has macros. That means it's possible to implement async and await, which Java itself does not have.

  • @Vikrm0000
    @Vikrm0000 ปีที่แล้ว

    Yes In theory LISP is miles better than any other language. But in the real world it simply cannot PERFORM.

  • @TTTzzzz
    @TTTzzzz ปีที่แล้ว

    Lisp is crap. (out of experience). Even Forth is better.

  • @dimitriosdesmos4699
    @dimitriosdesmos4699 ปีที่แล้ว

    (if(=x 10)(println 'hi')).......WTF ..bro, THAT IS JUST SAD......looks to me like the worst syntax in the world.

    • @TheSkeptic-lz2cc
      @TheSkeptic-lz2cc 8 หลายเดือนก่อน

      : run 10 = if ." hi" then ; ok
      9 run ok
      10 run hi ok

  • @christopheroliver148
    @christopheroliver148 4 หลายเดือนก่อน

    "...we managed to create a language that accomplishes neither." Ouch! My sides! /me ∉ pythonistas