Python Forum
Do you feel the Mojo - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Do you feel the Mojo (/thread-40106.html)



Do you feel the Mojo - snippsat - Jun-03-2023

Mojo 🔥 — a new programming language
So a interesting approach,and with a performance boost that can be large.
It's not only for AI developers,but can be used for standar python in different ways as it a superset of Python.
Mojo Wrote:More importantly, Mojo allows you to leverage the entire Python ecosystem so you can continue to use tools you are familiar with.
Mojo is designed to become a superset of Python over time by preserving Python’s dynamic features while adding new primitives for systems programming.
Can eg write Python and use the Mojo compiler.
An funny stuff can use an emoji! as file extension(looks scary wonder how Windows(cmd) will deal with that.
$ cat hello.🔥
def main():
    print("hello world")
    for x in range(9, 0, -3):
        print(x)
$ mojo hello.🔥
hello world
9
6
3
$

Mojo Lang… a fast futuristic Python alternative

Chris Lattner was guest on Lex Fridman, Future of Programming and AI
There dive deep into all of this.


RE: Do you feel the Mojo - Gribouillis - Jun-04-2023

This language looks incredibly attractive. I have a couple of projects that I'm going to try in this context.