Update main.d
This commit is contained in:
parent
d218fa111c
commit
98a2e31aa9
|
@ -1,4 +1,4 @@
|
||||||
// Creating Tic Tac Toe (Noughts and Crosses) game
|
// Creating Tic Tac Toe (Noughts and Crosses) game (check ticTacToe.d)
|
||||||
// LET'S LEARN: passing a variable by value and by reference
|
// LET'S LEARN: passing a variable by value and by reference
|
||||||
|
|
||||||
import std.stdio: writeln;
|
import std.stdio: writeln;
|
||||||
|
@ -27,10 +27,10 @@ void modify(int argument) {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// passing by reference
|
// passing by reference
|
||||||
// when passing by reference, a fucntion copies the reference to the variable, and when modifying
|
// when passing by reference, a function copies the reference to the variable, and when modifying
|
||||||
// the argument of a function, changes the actual value of the original variable
|
// the argument of a function, changes the actual value of the original variable
|
||||||
void modify(ref int argument) {
|
void modify(ref int argument) {
|
||||||
argument = 70;
|
argument = 70;
|
||||||
|
|
||||||
writeln("Step 2: argument(num) = ", argument);
|
writeln("Step 2: argument(num) = ", argument);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue