Jiří Beneš
Jiří Beneš
Today I've independently ran into this issue as well. ``` effect Foo { def foo(): String } def main() = { try { f.foo() } with f : Foo {...
I thought about the possible triggers -- why not _both_ nightly _and_ a "latest tagged version"? We could have one of those by default and let the user select the...
The parser for module names only considers a small subset of possible file names -- all of which should be easily usable as JavaScript identifiers :) We might want to...
Would you know if this is solved with #388 already, @b-studios? :)
Effekt on Windows is broken right now (#401), but this seems to have worked in v0.2.1 on Windows and in WSL. We can revisit this after #401 gets fixed, closing...
Duplicate of https://github.com/effekt-lang/effekt-website/issues/37.
Note: type annotations don't help: ``` def sortFst[Int, B](lst: List[Tuple2[Int, B]]): List[Tuple2[Int, B]] = { lst.sortBy { (p1: Tuple2[Int, B], p2: Tuple2[Int, B]) => comparePairsByFirst(p1, p2) { (a: Int, b:...
@b-studios helpfully told me that the problem is here: ```scala def sortFst[Int, B] ``` ^ we're binding `Int` as a type variable, so the error should actually say something like:...
It's better since now there's an additional message: ``` Type parameter Int shadows outer definition of Int ``` which is already helpful. But since we have namespaces, it would be...
> @jiribenes With #434 being merged, is the library now usable for you? Yep -- except that `immutable/bytes` is not a part of this PR so nobody else can actually...