Update main.d

This commit is contained in:
Ki Rill 2019-12-16 14:12:05 +06:00 committed by GitHub
parent bbc007db69
commit f3d3c91fbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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