# \#mojo

**URL:** https://discourse.julialang.org/tag/mojo/1539.md

[Latest](https://discourse.julialang.org/latest.md) · [Categories](https://discourse.julialang.org/categories.md) · [Tags](https://discourse.julialang.org/tags.md)

---

## [I have noticed a cold period for mojo, the reason?](https://discourse.julialang.org/t/i-have-noticed-a-cold-period-for-mojo-the-reason/124931)

<div class="topic-metadata">

**Author:** [@sylvaticus](https://discourse.julialang.org/u/sylvaticus)\
**Replies:** 2\
**Last updated:** [January 19, 2025, 8:29pm UTC](https://discourse.julialang.org/t/i-have-noticed-a-cold-period-for-mojo-the-reason/124931 "2025-01-19T20:29:02Z")

</div>

Looking on google trends, I have noticed that the Mojo language, that in many way has similar objectives than Julia, has gonna trough a would-call “cold” adoption, after an initial warm welcoming and despite both the ped…

---

## [Why \`Mojo\` can be so fast?](https://discourse.julialang.org/t/why-mojo-can-be-so-fast/98458)

<div class="topic-metadata">

**Author:** [@Brian1](https://discourse.julialang.org/u/Brian1)\
**Replies:** 14\
**Last updated:** [May 15, 2023, 1:45pm UTC](https://discourse.julialang.org/t/why-mojo-can-be-so-fast/98458 "2023-05-15T13:45:33Z")

</div>

Mojo is a new language, this is the introduction of it. I am curious about its performance, so I made a test for it. In the Jupyter supplied by the Mojo: %%python import time def fib(n): if n == 0 or n == 1: …

---

## [Mojo SDK has telemetry](https://discourse.julialang.org/t/mojo-sdk-has-telemetry/111094)

<div class="topic-metadata">

**Author:** [@mkitti](https://discourse.julialang.org/u/mkitti)\
**Replies:** 3\
**Last updated:** [March 4, 2024, 4:38pm UTC](https://discourse.julialang.org/t/mojo-sdk-has-telemetry/111094 "2024-03-04T16:38:30Z")

</div>

Yes, in combination with the Modular CLI tool, the Mojo SDK collects some basic system information and crash reports that enable us to identify, analyze, and prioritize Mojo issues. There is an opt-out though… It’s…

---

## [Julia, MOJO, Rust in a Primeagen video](https://discourse.julialang.org/t/julia-mojo-rust-in-a-primeagen-video/110056)

<div class="topic-metadata">

**Author:** [@Dan](https://discourse.julialang.org/u/Dan)\
**Replies:** 4\
**Last updated:** [February 11, 2024, 4:24pm UTC](https://discourse.julialang.org/t/julia-mojo-rust-in-a-primeagen-video/110056 "2024-02-11T16:24:19Z")

</div>

Thanks to an astute commenter, Mojo still does PR for Julia

---

## [Did Modular just reinvent Julia?](https://discourse.julialang.org/t/did-modular-just-reinvent-julia/98214)

<div class="topic-metadata">

**Author:** [@Phil\_Tomson](https://discourse.julialang.org/u/Phil_Tomson)\
**Replies:** 260\
**Last updated:** [November 25, 2023, 2:47am UTC](https://discourse.julialang.org/t/did-modular-just-reinvent-julia/98214 "2023-11-25T02:47:49Z")

</div>

…but with a more pythonic syntax: Mojo 🔥: Programming language for all of AI

---

## [Julia & Mojo Mandelbrot Benchmark](https://discourse.julialang.org/t/julia-mojo-mandelbrot-benchmark/103638)

<div class="topic-metadata">

**Author:** [@Dreycen\_Foiles](https://discourse.julialang.org/u/Dreycen_Foiles)\
**Replies:** 56\
**Last updated:** [October 13, 2023, 3:24am UTC](https://discourse.julialang.org/t/julia-mojo-mandelbrot-benchmark/103638 "2023-10-13T03:24:39Z")

</div>

For those of you who aren’t aware, the Mojo SDK was recently released, so I thought I would take the opportunity to start benchmarking some Julia code against Mojo. As a first test, I am calculating the Mandelbrot set us…

---

## [Performance comparison, Julia is a slower than Mojo, am I doing something wrong?](https://discourse.julialang.org/t/performance-comparison-julia-is-a-slower-than-mojo-am-i-doing-something-wrong/103870)

<div class="topic-metadata">

**Author:** [@Brian1](https://discourse.julialang.org/u/Brian1)\
**Replies:** 44\
**Last updated:** [September 28, 2023, 1:10pm UTC](https://discourse.julialang.org/t/performance-comparison-julia-is-a-slower-than-mojo-am-i-doing-something-wrong/103870 "2023-09-28T13:10:00Z")

</div>

I am using fibonacci function to the compare the performance between Julia and Mojo. First Julia code: function fib(n::Int64)::Int64 n \<= 2 && return 1 n == 3 && return 2 fib(n - 1) + fib(n - 2) end @time …

---

## [Mojo, is it just Python Julia?](https://discourse.julialang.org/t/mojo-is-it-just-python-julia/98573)

<div class="topic-metadata">

**Author:** [@cdelv](https://discourse.julialang.org/u/cdelv)\
**Replies:** 1\
**Last updated:** [May 9, 2023, 8:06pm UTC](https://discourse.julialang.org/t/mojo-is-it-just-python-julia/98573 "2023-05-09T20:06:19Z")

</div>

Hey everyone, I just saw this video about a new programing language intended for AI that is coming up. To me, looks a hell of a lot like Python Julia with its JIT. But, I would love to hear everyone’s thoughts. Also, th…
