Search

September 10
Issues »
...T a) {}
alias foo = b.foo;

void main()
{
    foo();
    foo(1);
}
----

a.d(6): Error...
September 10
Learn »
...import std.concurrency;
import std.stdio;

void main(){

        int N=10;
        shared int[] arr1=new...
September 10
Learn »
...import std.stdio;
import std.exception;

void main(){

        int N=5;
        int[] arr1= new int...
September 10
DIP Development »
...why DIP1035 added `@system` variables.
```D
void main() @safe
{
    SumType!(int, int*) s = new int;
}
```
September 09
Issues »
...and runs, but the assertion fails

---
void main() @safe
{
    auto arr = bar();
    assert(arr == [1...
September 09
Learn »
...line - 1)
    .front
    .parse
    .writeln(" == ", t);
}

void main(){
  int i = 3;
  show(i++ + ++i * i...
September 09
Learn »
...to!int()` etc.

```d
import std;

void main(string[] args)
{
    // string[] inputs = args[1..$]; // let...
September 09
Learn »
...const f = n * f!(n - 1);
}

void main()
{
    int i = 3;
    show(i++ + ++i * i...
September 09
Learn »
...drop(line-1).front.parse," == ",t);
}
void main(){
    int i=3;
    show(i++ + ++i * i...
September 09
Announce »
...emscripten_cancel_main_loop();
        return;
    }
    screen_surface = SDL_GetWindowSurface(window);

    emscripten_set_main_loop(&mainloop...
22 23 24 25 26 27 28 29 30 31 32 33
Next ›   Last »