From f3d3c91fbb2951f7a99b2f979cb89c1d4931a8be Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Mon, 16 Dec 2019 14:12:05 +0600 Subject: [PATCH] Update main.d --- lesson#3/main.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lesson#3/main.d b/lesson#3/main.d index 3f83fcb..bd0be47 100644 --- a/lesson#3/main.d +++ b/lesson#3/main.d @@ -14,10 +14,10 @@ void main() { // 3 basic types: integers, floating-point, characters // basic data types - int a; // declaration of a variable + int a; // declaration of a variable float b = 12.5; // initialization and declaration - double c; // double precision of float - char e; // a single character + double c; // double precision of float + char e; // a single character char letterA = 'A'; // outputing the value of variable b @@ -61,4 +61,4 @@ void main() { Write a comment about what you found. */ -} \ No newline at end of file +}