@ammarfaizi2@social.gnuweeb.org
Post #868928
2026-03-21 15:06 UTC
RE: https://tilde.zone/@sirwumpus/116267753725061982
Oh wow, TIL we can do:
```
static void *array[] = { &&foo, &&bar, &&hack };
goto *array[i];
```
Replies (1)
-
@a1ba@suya.place 2026-03-21 15:12
@ammarfaizi2 yeah, it's an extension. But it doesn't really help with the performance IIRC, switch-case would get compiled into jump table anyway.