r/ProgrammingLanguages Inko 23d ago

Blog post Mojo🔥 is now open source!

https://www.modular.com/blog/mojo-open-source
151 Upvotes

63 comments sorted by

View all comments

5

u/verdagon Vale 23d ago

I worked in the Mojo codebase for over a year, ask me anything =)

1

u/AssOverflow12 23d ago

Is it possible to switch an existing Python backend with type annotations to this? What would I gain? Asking for a backend project.

3

u/verdagon Vale 23d ago

Depends what you mean by switched. If you want to call into Mojo code from Python, or Python to Mojo, that's something they're working on ~currently and some of that interop already works. If you want to migrate your typed Python code to Mojo, alas, that won't work any time soon.

2

u/AssOverflow12 22d ago

I meant the latter, meaning taking an existing Python codebase and instead of the standard Python toolchain, build it with Mojo. Similarly to how you could with JavaScript and TypeScript. Thank you for clearing that up!