Richard Feldman
Richard Feldman
Putting this into the repl: ``` » 0,0 ``` ...yields this panic: > 'not yet implemented: unhandled parse error: Pattern(**IndentEnd**(3, 7), 3, 6)', compiler/reporting/src/error/parse.rs:534:14 Similarly, this: ``` » 0, ```...
Currently there's no way to directly ask for infinity, -infinity, or NaN. There should be: - [x] https://github.com/roc-lang/roc/pull/6711 Add builtins for `Num.infinityF32 : F32`, `Num.infinityF64 : F64`, `Num.nanF32 : F32`,...
Currently, if I have two modules both named `Event`, one in both my `app` and in the other in the `platform` it uses, I'll have a naming collision. This should...
Suppose I have `imports [foo.Bar]` in one of my `interface` modules that gets imported by my `app` module, which has the `foo` shorthand defined in`packages { pkg: ... }` properly....
These are some tweaks to workflow prompts to fix some situations I encountered where the workflow emitted one giant step. Also fixes the scenario where it looks for an entire...
# WIP, do not merge yet! Closes #ISSUE Release Notes: - Added/Fixed/Improved ... Optionally, include screenshots / media showcasing your addition that can be included in the release notes. ###...
Follow-up to https://github.com/roc-lang/roc/pull/7156
This isn't trying to do anything with expressions yet; all it does is that you give it a `Variable` and `Subs` and it monomorphizes that variable. This is based on...
This is because in [host.c](https://github.com/roc-lang/basic-cli/blob/3117fd3315a983ca48af10a76ab8b625dfcda34b/src/host.c#L6) we use the return value of `rust_main()` as the exit code, but `rust_main` [doesn't return anything](https://github.com/roc-lang/basic-cli/blob/3117fd3315a983ca48af10a76ab8b625dfcda34b/src/src/lib.rs#L271C13-L271C13) right now. To fix this: * Change `rust_main` to...
This is currently a bunch of tests and an algorithm that doesn't successfully make them pass. In the future, it can become a real working implementation. I just want to...