Update main.d
This commit is contained in:
parent
bbc007db69
commit
f3d3c91fbb
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue