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
|
// 3 basic types: integers, floating-point, characters
|
||||||
|
|
||||||
// basic data types
|
// basic data types
|
||||||
int a; // declaration of a variable
|
int a; // declaration of a variable
|
||||||
float b = 12.5; // initialization and declaration
|
float b = 12.5; // initialization and declaration
|
||||||
double c; // double precision of float
|
double c; // double precision of float
|
||||||
char e; // a single character
|
char e; // a single character
|
||||||
char letterA = 'A';
|
char letterA = 'A';
|
||||||
|
|
||||||
// outputing the value of variable b
|
// outputing the value of variable b
|
||||||
|
@ -61,4 +61,4 @@ void main() {
|
||||||
Write a comment about what you found.
|
Write a comment about what you found.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue