mojo icon indicating copy to clipboard operation
mojo copied to clipboard

The Mojo Programming Language

Results 884 mojo issues
Sort by recently updated
recently updated
newest added

### Bug description ```shell Try/Except into the code attached sometimes works ``` ### Steps to reproduce ```shell Try/Except into the code attached first time it works and after it gives...

bug

## Bug Description ```py from DType import DType from Functional import parallelize, vectorize @value struct Struct[size: Int]: var state: SIMD[DType.ui32, size] fn f[size: Int](): var s = Struct[size](0) @parameter fn...

bug

## Bug Description I just started to use Mojo playground last week, and yesterday it stopped working. When I logged in playground, server tries to start, but it does not...

bug
playground

## Bug Description ```py @value @register_passable struct Struct[n: Int]: alias Alias = Struct[1]() alias x = Struct.Alias ``` ``` error: The Mojo REPL has crashed and attempted recovery. If the...

bug

## Request The modules created in Mojo can be simply imported in Python, and Python module can easily imported to Mojo. The data type can be seamlessly converted and maximum...

enhancement

## Bug Description If you have a function with the same name inside and outside a struct, then you cannot call the function that it outside the struct from the...

bug

## Bug Description ```py fn test() -> fn(Int) raises capturing -> Int: fn f(x: Int) raises -> Int: return x return f let f = test ``` and ```py fn...

bug

## Bug Description ```py fn f(func: fn() -> None) -> fn() capturing -> None: fn wrapper(): func() return wrapper fn g(): pass f(g)() ``` crashes with ``` error: Execution was...

bug

## Bug Description Kernel consistently dies (not a REPL crash, nor runtime crash) when compiling the provided code, unclear why. Making small seemingly unrelated changes to the program causes it...

bug
playground

## Request Either: - Allow a fixed number of arguments after a variadic argument - Change the arguments of `__setitem__` to have the value immediately follow `self` ### Motivation Implementing...

enhancement
mojo-lang
mojo