-
-
I don't know that this is a bug per se, but in the project I'm working on, my code formats like this:
```
case data {
-> InstSYS(address: nnn)
-> InstCLS
-> InstRET
-> In…
-
```rust
case x {
-> True
_ -> False
}
```
The `_` doesn't get rendered in the Erlang.
```rust
case x of
-> true;
_ -> false
end
```
-
Running `mach build --dev` in a fresh clone (5dac1f6) fails, as for creating the virtualenv to build `mozjs` Python3 is used instead of Python2.7:
```
error: failed to run custom build command for `m…
-
Current behaviour
```rust
let module_ = tuple(
atom.create_from_string("module"),
atom.create_from_string("gleam@otp@actor"),
)
```
Expected behaviour
```rust
let module_ = tu…
-
In the (TODO) doc comments of `string.slice` ( https://github.com/gleam-lang/stdlib/blob/master/src/gleam/string.gleam#L135 ), you see this example:
```rust
> slice("snakes on a plane!", from: -6,…
-
https://github.com/gleam-lang/gleam/blob/7d2f1ae988e2c05608cfc94d7fd3a38909b505a9/templates/documentation_module.html#L41-L77
We'll need to add constructor information to this struct. https://githu…
-
I'm not sure how to tackle this best.
- A String can always be treated as a Binary but not the reverse.
- How often do people work with raw binaries, is there a future where there would be syntax…
-
In v3, each track page will have this lovely looking block:
![image](https://user-images.githubusercontent.com/135246/98686479-ec1fa580-2368-11eb-92fd-3904eba0ffa8.png)
The idea of this block is…
-
Currently we can check for equality in case clause guards
```rust
let y = z
case x {
1 if x == y -> True
_ -> False
}
```
It would be useful to also be able to test for ordering
```…