How to add two numbers in D

1 Answer

0 votes
import std.stdio;

void main() {

    int x = 10;
    int y = 25;

    int z = x + y;

    writeln(z);
}



/*
run:

35

*/

 



answered Dec 9, 2022 by avibootz
...