https://dlang.org/phobos/std_stdio.html#.writeln
It states that only `StdioException` can be thrown, which is actually not true, as shown by this
```d
import std.stdio;
nothrow void hello()
{
try {
writeln("Hello, World!");
} catch (StdioException) {}
}
```
or
```d
import std.stdio;
nothrow void hello()
{
try {
writeln(0);
} catch (StdioException) {}
}
```
Comment #1 by robert.schadek — 2024-12-01T16:39:57Z