From 7a695bca298996b66de67f873f5a517753027ea8 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Sun, 15 Dec 2019 17:35:35 +0600 Subject: [PATCH] Update main.d --- lesson#2/main.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lesson#2/main.d b/lesson#2/main.d index 9b5bc2c..49fd828 100644 --- a/lesson#2/main.d +++ b/lesson#2/main.d @@ -14,5 +14,7 @@ import std.stdio; // handles data input and output // Our main function. Whenver you launch your program, it starts executing instructions from the main function. // A function is a group of statements that performs a certain task. void main() { - writeln("Hello, Dlang!"); // outputs text to terminal/console + writeln("Hello, Dlang!"); // outputs "Hello, Dlang!" to terminal/console } + +