Jasper Woudenberg
Jasper Woudenberg
> Is that so? In the above example, at least, one could drop lines up to and including the last occurrence of /sanctuary-def/ and arrive at the same result. You're...
Another strategy would be to immediately create and store a stack the moment a `def`-returned function is called (`var stack = (new Error()).stack`). Pop the top entry of that stack...
Cool! I'll try to find some time next week to try it out.
@lukewestby did you have to do anything special on your account to be able to publish to npm on behalf or NRI?
Thank you for your fast response. Also, all the best wishes for 2020! I looked a bit at open issues and source code and noticed `requestManagerOverride` function. Is that part...
I found this issue while searching for ways to auto-generate exposed-modules. For me too it's the one showstopper for switching from hpack to cabal files in my personal projects and...
I just ran into this too. Here's another example: ```roc app "experiment" packages { pf: "https://github.com/roc-lang/basic-cli/releases/download/0.8.1/x8URkvfyi9I0QhmVG98roKBUs_AZRkLFwFJVJ3942YA.tar.br", } imports [pf.Task.{ Task }] provides [main] to pf main : Task {} I32...
Sure, thank you!
Hey @Anton-4 , quick follow up question to your comments: > Note that you did not just add an implementation here. The type does not match the implementation, so I...
If I try with this simple code sample: ``` interface Foo exposes [foo] imports [] foo : U8 -> U8 foo = \_ -> {} bar : U8 bar =...