Update main.d

This commit is contained in:
Ki Rill 2019-12-23 16:26:23 +06:00 committed by GitHub
parent d218fa111c
commit 98a2e31aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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
import std.stdio: writeln;
@ -27,7 +27,7 @@ void modify(int argument) {
*/
// 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
void modify(ref int argument) {
argument = 70;