<- Back
Comments (63)
- andsoitisLove this intentionality: ” Our open source approach has been deliberate: we’ve found that small and tight-knit design teams (not committees) are the best for finding the “soul” of a language, but that feedback from a broader community is essential to escape an echo chamber. As such, we first open-sourced the Mojo standard library, then released hundreds of thousands of lines of kernel code written in Mojo, tools, and support. We built together with community feedback and public design proposals, and are now open sourcing the compiler. We will continue to open our processes further as Mojo keeps maturing.”
- eatonphilI did a review of Mojo a few months ago focused on Python compatibility if anyone's curious about that angle. Admittedly it is a narrow angle. I want to take another look at Mojo sometime not focused on Python.https://theconsensus.dev/p/2026/03/12/mojos-not-yet-python.h...
- melodyogonnaOne of my favourite features of Mojo is linear types and how deeply they have been integrated into manual memory management - see:https://x.com/melodyogonna/status/2085089269484343725?s=20. When I first learned about linear types, my first thought of the use case was making manual allocations and deallocations safer without sacrificing usability, but I didn't know what that could look like; now I do. This is great because in Mojo, pointers are surfaced a lot more than in, say, Rust, but such sharp tooling in a language you expect to be safe by default can be problematic. Linear types, combined with the origin system, give the language a lot of flexibility; it is like using a sharp tool with a safety glove: the tool isn't any less sharp, but the chances of accidentally injuring yourself are reduced.
- dangRecent and related:Mojo 1.0 - https://news.ycombinator.com/item?id=49261128 - Aug 2026 (244 comments)
- branko_dIs this a case of of Qualcomm commoditizing their complements? Does Mojo have a potential for disrupting Nvidia's current market position?https://www.joelonsoftware.com/2002/06/12/strategy-letter-v/
- embedding-shapeFinally, gonna be a lot of fun to finally play around with, lets see how it compares to Python for ML ultimately :) The build process is quite heavy, pinning all my cores at 100% on a Threadripper 9970X for ~15 minutes which isn't so common.Curious to know what setups they've tested Mojo on so far, as I understood it to be mainly for ML/AI stuff, so commonly pretty beefy workstation, yet I'm getting warnings that it's not recognizing my GPU (RTX Pro 6000). Seems easy enough to work around by editing the gpu_mapping in MODULE.bazel so I guess isn't a huge issue. Just strange to see a really CPU-heavy build, then not recognizing a somewhat common "prosumer" GPU (common in the ecosystem and expected user audience at least).
- mrbonnerSo I think the permissive license like Apache 2 without opening up for upstream contributions would be the way of future open source development. In a very similar way of SQLite. It definitely will help shield off a bunch of AI generated contributions first and foremost and then, aligning mental model with the human contributions with Mojo leader team.
- SwellJoeAs long as it was proprietary, I could ignore it. Now, I guess I have to learn a little something about it.
- melodyogonna
- totalperspectivThis is really exciting. I've been using Mojo off and on for side projects over the last two years.(copying from some previous Mojo threads) It's got an ownership system adjacent to Rust, comptime similar to Zig, and a first class dependent type system. Even more exciting, is that uses LLVM (to the best of my understanding) in some novel ways and for more optimizations.
- setoptVery exciting. Closed source was one of the main things making me not try it out yet.Any good resources for getting started? And anything on doing NumPy/SciPy-like stuff in it?
- Alien1Being"Qualcomm to Acquire Modular 06/24/2026"https://investor.qualcomm.com/news-events/press-releases/new...Can acqui-death be far away...?
- melodyogonnaSuch an exciting time for Mojo, I don't think people realize just yet the innovation being brought to fore here.
- pmkaryWhat a beautiful standard library btw. Much to learn and take from.
- ChrisArchitectRelated:Mojo 1.0https://news.ycombinator.com/item?id=49261128
- anonundefined
- melodyogonnaRelated post with relevant pr: https://news.ycombinator.com/item?id=49347777
- ModernMech"Modular Confidential (obviously), May 14, 2022"lol, feels like espionagehttps://github.com/modular/modular/blob/main/KGEN/docs/Desig...Compiler walkthroughhttps://github.com/modular/modular/blob/main/KGEN/docs/MojoC...
- LichtsoTechnically soruce available now with the promise of accepting contributions (thus becoming fully open source) early next year. But since it is an Apache 2 license (like the rest of the LLVM project) you are already allowed to fork and contribute to your own fork right now, just no upstreaming.For many the closed source nature of the compiler was a knock-out criterion. We will see if Mojo can gain traction now or if it has missed its window of opportunity.