Mojo (programming language) (English Wikipedia)

Analysis of information sources in references of the Wikipedia article "Mojo (programming language)" in English language version.

refsWebsite
Global rank English rank
low place
low place
3,696th place
2,428th place
383rd place
320th place
low place
low place
23rd place
32nd place
low place
low place
low place
7,917th place
low place
low place
3,700th place
2,360th place
low place
low place
69th place
59th place
1st place
1st place

arxiv.org

  • 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].

fast.ai

github.com

infoworld.com

julialang.org

discourse.julialang.org

llvm.org

modular.com

docs.modular.com

  • "Mojo Changelog". Modular. Retrieved 2024-04-14.
  • "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.
  • "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.
  • "Why Mojo🔥 | Modular Docs". docs.modular.com. Retrieved 2024-05-28.
  • "Mojo🔥 changelog".
  • "Modular Docs - Mojo🔥 programming manual". docs.modular.com. Retrieved 2023-10-19.
  • "Modular Docs - Mojo🔥 programming manual". docs.modular.com. Retrieved 2023-10-31.
  • "Ownership and borrowing | Modular Docs". Modular. Retrieved 2024-02-29.
  • "Mojo🔥 programming manual". Modular. Archived from the original on 2023-06-11. 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.
  • "Modular Docs - Mojo🔥 roadmap & sharp edges". docs.modular.com. Retrieved 2023-10-31.

modular.com

research.google

siliconangle.com

theregister.com

twitter.com

web.archive.org

  • "Mojo🔥 programming manual". Modular. Archived from the original on 2023-06-11. 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.