Mojo (programming language)

Mojo
Paradigm
FamilyPython
Designed byChris Lattner
DeveloperModular Inc.
First appeared2023; 1 year ago (2023)
Preview release
24.2.1 [1] / April 12, 2024; 11 days ago (2024-04-12)
Typing discipline
OSCross-platform
LicenseProprietary
Filename extensions.🔥 (the fire emoji/U+1F525 Unicode character), alternatively .mojo
Websitewww.modular.com/mojo
Influenced by
Python, Cython[citation needed], C, C++, Rust, Swift, Zig

Mojo is a programming language in the Python family that is currently under development.[2][3][4] It is available both in browsers via Jupyter notebooks,[4][5] and locally on Linux and macOS.[6][7] Mojo aims to combine the usability of higher level languages, specifically Python, with the performance of lower level ones.[8]

Origin and Development History[edit]

The Mojo programming language was created by Modular Inc, which was founded by Chris Lattner, the original architect of the Swift programming language and LLVM, and Tim Davis, a former Google employee.[9]

According to public change logs, Mojo development goes back to 2022.[10] In May of 2023, the first publicly testable version was made available online via a hosted playground.[11] By September 2023 Mojo was available for local download for Linux[12] and by October 2023 it was also made available for download on Apple's macOS. [13]

Features[edit]

  • Mojo uses inferred static typing.[16]
  • Mojo was created for easy transition from Python. The language has syntax similar to Python's, and allows users to import Python modules.[17]
  • Mojo is not open source, but it is planned to become open source in the future.[18]
  • Mojo def functions use value semantics by default (functions receive a copy of all arguments and any modifications are not visible outside the function), while Python functions use reference semantics (functions receive a reference on their arguments and any modification of a mutable argument inside the function is visible outside).[20]
  • Mojo files use the .🔥 or .mojo file extension.[2]

Programming examples[edit]

In Mojo, functions can be declared using both fn (for performant functions) or def (for Python compatibility).[17]

Basic arithmetic operations in Mojo with a def function:

def sub(x, y):     """A pythonic subtraction."""     res = x - y     return res 

and with an fn function:

fn add(x: Int, y: Int) -> Int:     """A rustacean addition."""     let res: Int = x + y     return res 

The manner in which Mojo employs var and let for mutable and immutable variable declarations respectively mirrors the syntax found in Swift. In Swift, var is used for mutable variables, while let is designated for constants or immutable variables.[17]

Variable declaration and usage in Mojo:

fn main():     let x = 1          let y: Int     y = 1      var z = 0     z += 1 

Usage[edit]

The Mojo SDK allows Mojo programmers to compile and execute Mojo source files locally from the command line and currently supports Ubuntu and macOS.[21] Additionally, there is a Mojo extension for Visual Studio Code which provides code completion and tooltips.

In January 2024, an inference model of LLaMA2 written in Mojo was released to the public.[22]

See also[edit]

References[edit]

  1. ^ "Mojo Changelog". Modular. Retrieved 2024-04-14.
  2. ^ a b "Mojo🔥 programming manual". docs.modular.com. Modular. 2023. Retrieved 2023-09-26. Mojo is a programming language that is as easy to use as Python but with the performance of C++ and Rust. Furthermore, Mojo provides the ability to leverage the entire Python library ecosystem.
  3. ^ "Why Mojo🔥 - A language for next-generation compiler technology". docs.modular.com. Modular. 2023. Retrieved 2023-09-26. While many other projects now use MLIR, Mojo is the first major language designed expressly for MLIR, which makes Mojo uniquely powerful when writing systems-level code for AI workloads.
  4. ^ a b c Krill, Paul (4 May 2023). "Mojo language marries Python and MLIR for AI development". InfoWorld.
  5. ^ a b Yegulalp, Serdar (7 June 2023). "A first look at the Mojo language". InfoWorld.
  6. ^ Deutscher, Maria (7 September 2023). "Modular makes its AI-optimized Mojo programming language generally available". Silicon Angle. Retrieved 2023-09-11.
  7. ^ "Mojo for Mac OS". Modular. Retrieved 2023-10-19.
  8. ^ "Mojo 🔥: Programming language for all of AI". www.modular.com. Retrieved 2024-02-28.
  9. ^ Claburn, Thomas (2023-05-05). "Modular finds its Mojo, a Python superset with C-level speed". The Register. Retrieved 2023-08-08.
  10. ^ "Mojo🔥 changelog".
  11. ^ "Modular: A unified, extensible platform to superpower your AI". www.modular.com. Retrieved 2024-04-14.
  12. ^ "Modular: Mojo🔥 - It's finally here!". www.modular.com. Retrieved 2024-04-14.
  13. ^ "Modular: Mojo🔥 is now available on Mac". www.modular.com. Retrieved 2024-04-14.
  14. ^ Lattner, Chris; Pienaar, Jacques (2019). MLIR Primer: A Compiler Infrastructure for the End of Moore's Law (Technical report). Retrieved 2022-09-30.
  15. ^ Lattner, Chris; Amini, Mehdi; Bondhugula, Uday; Cohen, Albert; Davis, Andy; Pienaar, Jacques; Riddle, River; Shpeisman, Tatiana; Vasilache, Nicolas; Zinenko, Oleksandr (2020-02-29). "MLIR: A Compiler Infrastructure for the End of Moore's Law". arXiv:2002.11054 [cs.PL].
  16. ^ "Modular Docs - Mojo🔥 programming manual". docs.modular.com. Retrieved 2023-10-19.
  17. ^ a b c "Modular Docs - Mojo🔥 programming manual". docs.modular.com. Retrieved 2023-10-31.
  18. ^ "Welcome to Mojo 🔥". GitHub. Modular. 2023-10-31. Retrieved 2023-10-31.
  19. ^ "Ownership and borrowing | Modular Docs". Modular. Retrieved 2024-02-29.
  20. ^ "Mojo🔥 programming manual". Modular. Retrieved 2023-06-11. All values passed into a Python def function use reference semantics. This means the function can modify mutable objects passed into it and those changes are visible outside the function. However, the behavior is sometimes surprising for the uninitiated, because you can change the object that an argument points to and that change is not visible outside the function. All values passed into a Mojo def function use value semantics by default. Compared to Python, this is an important difference: A Mojo def function receives a copy of all arguments—it can modify arguments inside the function, but the changes are not visible outside the function.
  21. ^ "Modular Docs - Mojo🔥 roadmap & sharp edges". docs.modular.com. Retrieved 2023-10-31.
  22. ^ "llama2.mojo🔥 changelog".

External links[edit]