Ratul
Ratul
**Description** Could not find anywhere an option to open the index.html page when user opens localhost:7878. How do we do that? Most of the cases - when we access the...
### Where is the problem? https://docs.modular.com/mojo/stdlib/memory/unsafe_pointer/UnsafePointer/ ### What can we do better? It would be really useful if usage examples are provided demonstrating how to make use of various store...
### Where is the problem? https://docs.modular.com/mojo/manual/parameters/ ### What can we do better? The example does not compile because the parametric type `T` is not Copyable. It throw the following error:...
Fix for: https://github.com/modular/modular/issues/4477
### Where is the problem? https://docs.modular.com/mojo/stdlib/collections/string/format/ ### What can we do better? Example snippet showing string formatting does not compile. `StringLiteral` does not format method. We need to change it...
### Where is the problem? https://docs.modular.com/mojo/stdlib/algorithm/functional/vectorize/ ### What can we do better? Sample vectorization code does not compile. APIs may have evolved - following lines in the sample code are...
### Where is the problem? https://docs.modular.com/mojo/manual/pointers/ ### What can we do better? The `SharedDict` sample code underneath `ArcPointer` section still uses **`inout`** type. Compilation fails. **`inout`** needs to be changed...
### Bug description ### Actual behavior Mojo compiler crashes with nested recursive functions. ### Expected behavior We should be able to use nested recursive functions. ### Steps to reproduce -...
### Bug description ### Actual behavior Struct with a Optional self type member - crashes the mojo compiler. The following example code does not work: ```mojo fn main(): _e =...