-
Hi Andras, thanks for figuring this out with me!
In our reddit chat, I wrote that "maybe this boils down to how well optimized GHC is for ARM vs x86", since the numbers I posted:
- Koka (with bo…
-
In an attempt to figure out of mutual recursion us supported, with the following input file,
```
fun foo()
bar()
fun bar()
foo()
fun main()
()
```
I get the following error with Koka 3.…
-
This compiles:
```koka
pub effect yield
ctl yield(elem : a) : ()
pub fun repeat(value : a) : (() -> ())
fun rec()
yield(value)
rec()
rec
```
This does not:
```koka
…
-
### Discussed in https://github.com/koka-lang/koka/discussions/599
Originally posted by **chtenb** October 24, 2024
```koka
pub effect yield
ctl yield(elem : a) : ()
pub fun fin/take(…
-
Nested comments are accepted in Koka source code, but then are copied verbatim in C source code, resulting in errors after the first closing `*/`. For instance, this Koka source code
```
/* a /* b *…
-
1. Create vector.kk
2. Add `pub val empty : forall vector = unit/vector()`
3. Compile
(Changing the name of the file, or adding a qualifier to `empty` makes the error disappear)
```
check :…
-
On Windows 10, I installed VSCode via `scoop install vscode` and then installed the official Koka extension. It installed Clang and after installation failed to build. I don't have the exact error, bu…
-
This code:
```koka
fun main()
"åäö".println
Just("åäö").println
("åä","ö").println
["åäö"].println
```
Prints the following:
```bash
åäö
Just("\xE5\xE4\xF6")
("\xE5\xE4","\xF6")
…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the bug
Python 3.12.3
sanic-23.12.1
very often (not 100%) after restarting worker, for example:
…
-
### Discussed in https://github.com/koka-lang/koka/discussions/600
Originally posted by **chtenb** October 24, 2024
```koka
pub effect yield
ctl yield(elem : a) : ()
pub fun map(it : …