The Lobster Programming Language

(strlen.com)

72 points | by klaussilveira 3 days ago ago

35 comments

  • xscott 3 hours ago

    I had seen Lobster before, but not really looked closely. Seeing it again now, I think I was wrong to dismiss it. Just at the syntactic level with semantics described in the link, it looks like it really might be "Python done right". The link mentions lots of features, but the following bits caught my eye.

    The let/var declarations for constants/variables is much better than implicit declaration, which silently hides typos and necessitates ugly global/nonlocal declarations. (Mojo offers this improvement too.)

    I don't know for sure, but it seems like it's embraced block arguments comparable to how Ruby or SmallTalk does it. So you can add your own control flow, container visitors, etc. I think of this as another syntax for passing a lambda function as an argument, and I'm curious if Lobster's optimizer flattens it to a basic block when possible.

    I think I'll try to learn more about it. I wonder if the name is a nod to Accelerando.

  • dang 2 hours ago

    Related. Others?

    The Lobster Programming Language - https://news.ycombinator.com/item?id=44051841 - May 2025 (6 comments)

    The Lobster Programming Language - https://news.ycombinator.com/item?id=31453822 - May 2022 (14 comments)

    The Lobster Programming Language - https://news.ycombinator.com/item?id=25498005 - Dec 2020 (4 comments)

    The Lobster Programming Language - https://news.ycombinator.com/item?id=19567160 - April 2019 (164 comments)

    The Lobster Programming Language - https://news.ycombinator.com/item?id=15557060 - Oct 2017 (2 comments)

  • 0cf8612b2e1e 2 hours ago

    Well, it has an animal mascot logo. Which is my personal yardstick for if a project is destined for success. So, off to a good start, but the lobster could be more cuddly.

    • adiabatty 2 hours ago

      To be fair, there’s a programming language out there already with a cuddly-lobster mascot. A decidedly un-cuddly lobster just maximizes product differentiation.

      • jibal 2 hours ago

        It's a crab, not a lobster.

      • shayway 2 hours ago

        What language is that?

        • jibal 2 hours ago

          They mean Rust, but its unofficial mascot is a cuddly crab, not a lobster (both are crustaceans).

  • nobleach 3 hours ago

    Obviously some will find this a silly opinion but the one thing that turned me off the most about the Nim programming language was its use of significant whitespace. The same is true with F# (and of course Python). Having had apps with YAML for config, and having had nightmares trying to copy/paste config directives from various sources, I just find whitespace to be unwieldy.

    Now that's a strong opinion, (weakly held - as a language can't be judged based on this design decision). But it does sour my interest a bit.

    • tzot an hour ago

      > Having had apps with YAML for config, and having had nightmares trying to copy/paste config directives from various sources, I just find whitespace to be unwieldy.

      Convert your YaML into JSON and save it in your YaML file. There is probably an online converter, but writing one in your language of choice should be less than ten lines of code.

      Do the same YaML→JSON for the “source” configuration you want to copy from, and copy-paste the parts you want. Leave them as JSON.

      Complaining about Python's significant whitespace, I get it. I don't mind it personally, but it's obligatory and you can't overcome it (unless you do `coding: with_braces` tricks, of course). But why one would complain about YaML's whitespace? It is not obligatory.

          some_key:
            attr1: val1
            attr2: 12312
      
      is equivalent to

          {some_key: {attr1: val1, attr2: 12312}}
      
      is equivalent to

          {"some_key": {"attr1": "val1", "attr2": 12312}}
      
      is equivalent to

          {"some_key": {
          "attr1":
          "val1", "attr2": 12312
          }
          }
      
      and they're all valid YaML (and on the plus side you can leave dangling commas at the end of sequences, but it won't be valid JSON anymore).
      • esrauch an hour ago

        > But why one would complain about YaML's whitespace? It is not obligatory.

        The problem (as felt by me and also as identified by the person you replied to) is that you can't copy-paste/munge some stuff into the right spot and then just let the formatter to fix the indentation. It's not a problem that the format "at rest" has whatever certain indentation to be correct, its that while being actively editing your formatter cannot automatically set the correct indentation.

        The flow that you're talking about of converting yaml to json and then putting it into yaml could work in some cases but thats very much a kludge. It will have numerous bad side effects unavoidable, including that it would discard comments in the middle since JSON doesn't allow for comments at all, theres no timestamps in JSON, there's no octal numbers, etc.

        • tzot 38 minutes ago

          > The problem (as felt by me and also as identified by the person you replied to) is that you can't copy-paste/munge some stuff into the right spot and then just let the formatter to fix the indentation.

          That problem I undestand, and that is why I suggested to convert both into JSON —or YaML with default_flow_style=True which would preserve datetimes and other non-JSON stuff— and copy-paste without the hassle of having to indent/unindent correctly. Of course that doesn't help with copying comments. That would need extra copy-paste operations, but still one hasn't the hassle of significant whitespace. The following is also valid YaML:

              {"some_key": {
              "attr1":
              # an intermittent comment
              "val1", "attr2": 12312  # more comments!
              }
              }
      • dgfitz an hour ago

        My gripe with json is the lack of support for comments. Whenever I come across a config file that has comments about what the config line(s) mean, I am so grateful.

        Whenever I come across a json config file, I kind of despair a little and start poking at the code in hopes there are comments about what the config means.

        • tzot 30 minutes ago

          I totally agree with your gripe about JSON's lack of comments. There were people AFAIK who tried to write a spec with comments (and maybe dangling commas? was it called JSON5?) but by then it probably was too late.

    • bobbylarrybobby 2 hours ago

      Never understood how putting up roadblocks for developers trying to copy-paste code was deemed acceptable, or GVR (and others) thought the solution to poorly formatted code was making formatting carry semantics instead of just writing an auto formatter.

      • adiabatty 2 hours ago

        To be fair to GvR, autoformatters weren’t commonplace in the late 80s and early 90s. Were there even any?

        Ever since Go got big, though, everyone else is discovering how fantastically nice they are, and that’s a good thing.

        • mdasen an hour ago

          Yea, in the 90s significant whitespace seemed great because it meant that you got readable code. The amount of code that you might see copy/pasted with terrible formatting/indentation in other languages could make you want to scream.

          Now, when you paste code and things are wrong, an auto formatter cleans it up for you. Before, you'd just end up with an unreadable codebase.

          It's definitely an odd choice to make now.

      • Night_Thastus 2 hours ago

        I agree. Autoformatters are everywhere and easy to use. I'd far rather do that (plus maybe a pre-commit hook) than have to deal with whitespace in the language.

    • yoyohello13 2 hours ago

      I get everyone has their thing, but I've been writing Python professionally for years and I can't even remember the last time significant white space was an issue. You just get used to it, like everything else.

    • FredPret 2 hours ago

      YAML has given me eye-twitching ever since I went on an ill-considered quest of setting up wifi on a Debian server years ago.

      I never figured it out by the way - just bought a really long LAN cable.

      • nobleach 2 hours ago

        YAML with Go templating (like you'd find in Helm Charts) was enough to push me over the edge.

        • tzot an hour ago

          Was there any reason not to use flow collection style, which would free the templates from significant whitespace?

    • nialv7 2 hours ago

      Was coming here to comment the exactly same thing. Significant indentation makes me shudder.

    • scotty79 2 hours ago

      I'm automatically going to be interested in any language with significant white space because there are very few mainstream ones and I hate the visual clutter that block delimiters create. Pretty much there's just Python. Scala 3 can happily do both.

      I think we'd be better off if text editors just had option of representing braces and such as consistent indentation. Block delimiting tokens should optionally have semantics of non directly printable characters like new line or tab.

      • pklausler 2 hours ago

        You'd love Haskell, which uses curly braces for many constructs, but also has rules by which they are implied by indentation -- so in practice you only ever see them on records.

        • recursivecaveat 2 hours ago

          I love python syntax overall, absolutely despise Haskell. Wastes my time constantly and gives me incomprehensible compiler errors when you screw it up. Expression oriented languages are really poorly suited for whitespace imo, unless they're hyper-regular like s-expressions: I could imagine a decent whitespace-based version of those.

        • scotty79 2 hours ago

          I'm not sure. The semantics is too wild to care about indentation or delimiters. I love Scala 3 though. Very rich and flexible language.

      • baranul 2 hours ago

        A language that can do both Python and C "styles" is Ring. It is possible. But the issue is people have such a strong preference for one or the other, that they force the language and developers to permanently choose.

        Even Allman versus K&R or tabs versus spaces are huge battles, without even going into significant white space.

  • nathan_compton 2 hours ago

    One thing I hate about Generative AI is that it has flipped the value prop of making your language similar to an existing popular language. This helps new programmers but it really messes with generative AI. I can feel the era of fun new programming languages that might break big ending.

    • scotty79 2 hours ago

      I'm afraid about that too, but I hope that AI will get significantly smarter faster than it takes for any new language take popularity among humans. That it will be smart enough to not be so language sensitive.

      Who knows. Maybe some new fun language will pop up that's hard to write for humans, but easy to write for AI (because it can work in millisecond loop with language server, think borrow checker to the moon) and also exceedingly easy to read for humans. Because humans will, I think stil for a long time, need to debug ever shrinking corner cases where AI generated something subtly but spectacularly wrong.

  • benrutter 3 hours ago

    This is a really nice looking language. Feedback in case the creator sees but it wasn't obvious to me at first that it was targeting game development. The first mention is in features:

    > Features have been picked for their suitability in a game programming language

    Would be fun to see some basic games like tetris, pong etc in Lobster in case anyone has an example floating round?

  • tines 3 hours ago

    Nice! So it looks like polymorphism is done via C++ template-style ad-hoc polymorphism? Are there any restrictions on it?

    Also, is there any kind of sophisticated pattern matching? I feel like for me a language without pattern matching is a non-starter these days.

  • rurban 2 hours ago

    One of the few light excellent C++ projects

  • jibal 2 hours ago

    .