On Monday, 3 October 2022 at 08:10:43 UTC, Bienlein wrote:
> My question is whether someone has an idea for a better
> solution.
You can pass a lambda to the fiber constructor. For example:
```
void fiberFunc(int i)
{
writeln(i);
}
void main()
{
auto fiber = new Fiber(() => fiberFunc(5));
fiber.call();
}
```