Richard Feldman
Richard Feldman
Today, if I write this: ```elixir # x should be positive expect > 0 ``` ...that comment will appear in the failed expectation. We talked about it on Zulip and...
It should be possible to do this: ```coffeescript when x == 1 is Bool.true -> ... Bool.false -> ... ``` This would also allow for pattern matching on other constants,...
To reproduce: ```haskell x = y
See [discussion on Zulip](https://roc.zulipchat.com/#narrow/stream/304641-ideas/topic/Program.20in.20CLI.20platform Should resolve https://github.com/roc-lang/roc/issues/4114
This is part of the [SIMD proposal](https://docs.google.com/document/d/1R3ESkzSyOAA8DnasxF1WHDeoe9LgFE1uvmIr8s-aNro/edit), and comes after https://github.com/rtfeldman/roc/issues/2932 and https://github.com/rtfeldman/roc/issues/2934 Tuples should desugar to numbered record fields; e.g. `(a, b)` should desugar to `{ 0: a, 1:...
This is part of the [SIMD proposal](https://docs.google.com/document/d/1R3ESkzSyOAA8DnasxF1WHDeoe9LgFE1uvmIr8s-aNro/edit), and comes after https://github.com/rtfeldman/roc/issues/2932 Tuples should be formatted the same way as they are in Rust: spaces after the comma but no spaces...
We need a component to graph survey activity, which will look like this: 
I reproduced this with a minimal `#![no_std]` executable that does nothing but return an exit code: ### main.rs ```rust #![no_std] #![no_main] #[no_mangle] fn main() -> i32 { 42 } #[panic_handler]...
Thanks for making this! I notice the `dealloc` function takes an unused `_layout` parameter (in order to satisfy the allocator trait, which makes sense) - but I have a use...