-
In continuation of #303, I also often find myself wanting to know the intermediate results between the phases (core pre/post Optimizer, PolymorphismBoxing etc).
It would be really nice for debugging …
-
There are two general situations where the users confuse argument lists with tuples.
We could potentially special-case the messages here:
### 1. Want a tuple, got an argument list
```scala
def…
-
The motivation is wrapping a block into a box in order to facilitate a nicer API. (using `orElse { ... } { ... }` instead of `orElse(box { ... }, box { ... }`).
I don't quite know whether this is jus…
-
Right now hovering over a reference shows the signature, which is helpful.
![image](https://github.com/effekt-lang/effekt/assets/408265/a84c1ae7-47a8-47d2-b417-0126c28f5078)
However, it would be g…
-
Consider the following program which works fine in Effekt:
```effekt
effect stop(): Unit
effect yield(): Unit / stop
def main() = {
try {
do yield()
} with stop {
resume(())
…
-
Hallo,
Wenn man beim Starpolygon Q = 7, P = 9 und Movintype Outlines eingibt passieren komische Dinge...
Soon5 updated
4 years ago
-
There is a slight incompatibility with Goety. When you're a Lich (goety), and you have a saturation upgrade, your mana will continuously drain as it tries to feed you. Reason for this is that if you a…
-
> Can we add quotes to the `${args.join(' ')}` part? When the path has blank spaces it fails to find the file.
_Originally posted by @CanCodes in [0a40aea](https://github.com/effekt-lang/effekt-vsc…
-
### Beschreibung
ich habe mein wagen eine matte farbe lackiert sobald ich aus dem tuningmenü gehe ist es zwar die selbe farbe nur nicht mehr matt
### Schritte zur Reproduktion
### Erwartetes Verhal…
-
In the following Effekt program, the commented-out line is necessary to satisfy the exhaustivity checker:
```effekt
def foo(): Int = {
var queue = true
1 match {
case 1 and queue is true …