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

## Request It would be nice if `print()` function have the same formaters as Python version does. Like: - The hability to chose the terminator instead of jump a line:...

enhancement

## Bug Description block scoping works differently in Pythonand in Mojo, the variable declared inside the loop is available in Python but not - expected behavior: valid python code should...

bug
mojo-lang
mojo

## Bug Description Just received playground access and excited to explore more of Mojo. Thank you to the maintainers of this new project! So far, I am unable to use...

enhancement

## Request Python has a built-in variable `__name__` that is currently not supported in Mojo. ### Motivation Using the `__name__` variable is a common practice in Python programming to provide...

enhancement

The other night I was trying to follow the [Implement DNS in a weekend](https://implement-dns.wizardzines.com/) course in Mojo. In the course they use `struct.pack` to make the byte array for the...

enhancement

## Request Allow user to save `.mojo` files in playground and import them in notebook. ### Motivation User defined common libraries can be saved in those files without copying around...

enhancement

## Stack traceback of Mojo programs One of the main features of Python is its excellent **error tracing** (unlike Java). Writing **code** starts with **debugging** **errors**, so it helps a...

enhancement

## Request if there is already a way to do this please let me know Please add a mojo internal way to open files, using python interop I wasn't able...

enhancement

## Request Need Implicit Printing and accessing the last outputs using "_" and "__" in Playground ### Motivation For testing the language features using implicit printing and accessing last outputs...

enhancement
mojo-tooling
mojo

## Request Disentangle struct's implementations from their data. ### Motivation Improving extensibility (see example below). ### Description and Requirements In the struct definition, define only the attributes: ``` struct MyPair:...

enhancement