Add files via upload

This commit is contained in:
Ki Rill 2019-12-30 12:53:59 +06:00 committed by GitHub
parent 6bc70b0d46
commit ada40ab397
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 38 additions and 0 deletions

38
lesson#9.1/main.d Normal file
View File

@ -0,0 +1,38 @@
// Creating Battleship game (hints)
// LET'S LEARN: enums
import std.stdio: writeln;
import std.conv: to;
// enum is a user defined type
// enum TypeName { ValueName_1, ValueName_2, /* etc. */ }
enum Colors {
RED=5, ORANGE, YELLOW, GREEN, BLUE, PURPLE, BROWN, BLACK
}
/*
// anonymous enum
enum {
RED=5, ORANGE, YELLOW, GREEN, BLUE, PURPLE, BROWN, BLACK
}
*/
void main() {
Colors background_color = Colors.RED;
writeln("Minimum value of Colors: ", Colors.min);
writeln("Maximum value of Colors: ", Colors.max);
writeln("Storage size of Colors: ", Colors.sizeof);
writeln("\n"); // '\n' => new line character
writeln("value of Colors.RED: ", Colors.RED.to!int); // converting to integer, otherwise it outputs RED
writeln("value of Colors.ORANGE: ", Colors.ORANGE.to!int); // converting to integer, otherwise it outputs ORANGE
writeln("value of Colors.YELLOW: ", Colors.YELLOW.to!int); // converting to integer, otherwise it outputs YELLOW
/*
int variable = RED;
writeln("variable = ", RED);
*/
}