Isaac Van Doren
Isaac Van Doren
This function needs to be implemented for wasi. https://github.com/roc-lang/roc/blob/11ecfe0bc6b225b5f40d8cee9790eec139eb720c/crates/compiler/gen_llvm/src/llvm/lowlevel.rs#L2111 The implementation may be the same as for Unix.
When I click on the second or third tab the first tab stays open.
Data compression is used all the time by software engineers, but I suspect many do not have a clear understanding of how it is implemented. I believe this makes it...
I don't know how doable it would be, but I think a chapter on a small version of SSH would be great.
I have an idea for a design; will update the issue when I get a chance.
All of these expects should pass, but the last one fails: ```roc # Passes expect Set.fromList [1, 2] == Set.fromList [1, 2] # Passes expect Set.fromList [1, 2] == Set.fromList...
This code causes the compiler to crash with the following error on `roc check` or `roc test`. ```roc module [] isBomb : List Str, I64, I64 -> Result Bool [OutOfBounds]...
Thanks to @lukewilliamboswell for the idea! The idea is to distribute a package that contains the CLI using module params, and have users copy a simple script importing the package...
This code formats as expected ```roc module [] hello = "world" # comment ``` but this code formats to the below ```roc module [] # comment ``` ```roc module []...