Search

January 21, 2024
Learn »
...import std.stdio;

    void main()
    {
        auto names = [ "foo", "bar", "baz" ];
        void delegate(int)[] dgs;

        string...
January 20, 2024
Learn »
...import std.stdio;

void main()
{
    auto names = [ "foo", "bar", "baz" ];
    void delegate()[] dgs;


    foreach (name...
January 20, 2024
Learn »
...import std.stdio;

void main()
{
    auto names = [ "foo", "bar", "baz" ];
    void delegate()[] dgs;

    foreach (name...
January 16, 2024
Learn »
...your code, the code inside of it may...do stuff like

auto foo(imported!"std.datetime...
January 16, 2024
Learn »
...partition code.

```d
void foo(Thing thing)
{
    void...immutable, may be modified inside `sendThing`; any combination...
January 12, 2024
General »
...foo set bag = ${d_variable_bag}`

But to attach sanitise functionalities in what is inside...
January 11, 2024
General »
...there be `foo`, a function that would like to receive an istring. Inside it, we...
January 08, 2024
General »
...foo = 2;
int bar = 4;
writeln(i"$foo...if the only thing inside the expression is...
January 01, 2024
Learn »
...a shared Foo across threads rather than pass the AA from inside Foo. Then you...
January 01, 2024
Learn »
...The worker function can't see `Foo foo` inside `main`, so it can't share...
1 2 3 4
Next ›   Last »