March 2018
Beginner to intermediate
656 pages
20h 9m
English
This allows the creation of user-defined types. An example is shown as follows:
enum Order {Filled, Placed, Expired };
Order private ord;
ord=Order.Filled;
Explicit conversion to and from all integer types is allowed with enums.