This language will solve most Python issues

SeasonedCode

Senior Member
Jr. Executive VIP
Jr. VIP
Joined
Oct 24, 2022
Messages
1,135
Reaction score
1,378
Mojo form modular is a new language that claims it is 35 times faster than Python also it will allow you to bypass the threading issue of Python and you can run multiple processor cores in parallel

basically, it is like typescript for javascript

what do you think Guys??
 
Yepp I have heard about it too. I am not really sure about it being 35000% (or 35%? not sure either) faster, but it seems to be a great alternative to python. Best part is that you can still keep the same code (i am not really sure if this is totally true) and it will still be faster. Win win for the python devs.
 
The main thing for me is that it finally adds static types to the language, so Python can for the first time in its history become a viable option for projects containing more than 1 file.
This new era of Typescript for JS, Mojo for Python, Kotlin for Java, and maybe Carbon for C++ is hella cool, wanna get my feet wet already. Well except Typescript ofc. Will WASM replace them shitty JS? Ain't web dev so I dunno :(
 
Yepp I have heard about it too. I am not really sure about it being 35000% (or 35%? not sure either) faster, but it seems to be a great alternative to python. Best part is that you can still keep the same code (i am not really sure if this is totally true) and it will still be faster. Win win for the python devs.
me too I am not sure that all that they claim is true but at least it will be better
 
Will WASM replace them shitty JS? Ain't web dev so I dunno :(
IMO wasm is good when it comes to fast calculation and other low level stuffs. But for web, it isn’t that good. It is good if you want to use it for an admin or something. But best of luck doing seo using a canvas element haha (I think I saw a framework that does exactly that… it has the whole app running inside a canvas element and being controlled by a wasm, which is crazy).


Typescript works totally fine.

Also, weird thought.. what if typescript compiled to wasm instead of transpiling to js? :D
 
Mojo form modular is a new language that claims it is 35 times faster than Python also it will allow you to bypass the threading issue of Python and you can run multiple processor cores in parallel

basically, it is like typescript for javascript

what do you think Guys??
All new langues faces the biggest problem. There are no libraries and no community projects.
Python was designed for fast code for people who don't have time and they want to finish project, get results fast without spending resources for expensive engineers.
 
All knew langues faces the biggest problem. There are no libraries and no community projects.
Python was designed for fast code for people who don't have time and they want to finish project, get results fast without spending resources for expensive engineers.
They claim that you can use any Python lib with Mojo
 
I would stay clear of this language for now and wait too see how it goes.

It's not a completely open source project with an open community yet. And you should always be a bit skeptical about a language when a company sponsors it as their product and not an open community effort  (so unlike Go, Rust, Dart/Flutter or Kotlin which were open source and community centric from day one).

We already know how that went with Java prior to 2006, or with Matlab, Xojo, Delphi and a dozen other dead languages which died because of their stagnant communities.
The main thing for me is that it finally adds static types to the language, so Python can for the first time in its history become a viable option for projects containing more than 1 file.
Python had typehints like since atleast 3.5 and has reached near maturity now. You can already do static typing in python with type hints and mypy. Checkout https://docs.python.org/3/library/typing.html
 
Back
Top