Martin Janiczek

Results 94 issues of Martin Janiczek

```haskell data Array = (Value x) | (Array a0 a1) Array.foldl fn init (Value x) = (fn x init) Array.foldl fn init (Array a0 a1) = (Array.foldl fn (Array.foldl fn...

question

I got this: ``` error: reached the recursion limit while instantiating `, ...) {call_Table_at_S83____ce760551ccb52d84::}, ...) as AsDef>::call::` | note: `::call` defined here --> src/run.rs:631:3 | 631 | unsafe fn call(slf:...

Targetting your `pr/8` branch in this PR as that seems to be where the newest 0.19 code lives. Fixes #9 (see that issue for the larger rationale on why this...

The current API has an argument `(Position -> Position -> Float)` for computing/estimating distance between cells which is (by documentation) supposed to be able to hande any two pairs of...

I'm not very sure about this (not being all that good in statistics), but it seems to me like the mean number of evaluations might not give as correct picture...

I feel like this is a blind spot of the current report format: it doesn't talk about how many seconds elapsed at all. In my implementation (https://github.com/jlink/shrinking-challenge/pull/34) the `lengthList` challenge...

Opening this issue based on [Discord discussion](https://discord.com/channels/912426566838013994/1240687735115874426/1248384356246884352). I'd like to have a way to crash at runtime. For example, Elm programs have `Debug.todo` which is sometimes useful. I've tried to...

### Reproducing the behavior Running command `hvm run out.hvm` With code (Bend) ``` add = (@a @b (+ a b)) x = (add 1 1) main = [(x),(x)] ``` With...

When first using this library, I have not made the realization that codecs will likely have a similar issue like JSON decoders in that order of fields is important and...

The setup: * OS: Windows 11 Home * Shell: PowerShell (with Gleam installed via Scoop) * Gleam 1.6.2 * Project: vanilla [`gladvent`](https://hexdocs.pm/gladvent/) one, (important!) on a WSL mount. ``` PS...

help wanted
priority:medium