DWSimmons
DWSimmons
I noticed a change in installing nightly/max returns ```console max --version max 2024.7.1505 (ba28802f) Modular version 2024.7.1505-ba28802f-release ``` Isn't `Modular` the CLI tool and that the nightly version is `mojo`...
Agreed duplicate.
https://github.com/modularml/mojo/blob/main/README.md has been updated to link to [2. Run code in the REPL] https://docs.modular.com/mojo/manual/get-started#2-run-code-in-the-repl
To clarify, crashes with `var` without alias annotation. Works with IntLiteral addition but not exponents. ```python fn main(): var n: Int = 2**2 # Returns 4 var n_power: Int =...
I played with this in https://github.com/modularml/mojo/issues/3480 (closed as duplicate) Here are some examples where there are `True` and still show other `True`. The stdout reports all values correctly. ```python 1>...