1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-21 14:46:37 +02:00

12 lines
284 B
C++
Raw Normal View History

// This file contains various code snippets taken from the CXX book and
// tutorial. Some have been modified to fit the course better.
// ANCHOR: shared_enums_cpp
enum class Suit : uint8_t {
Clubs = 0,
Diamonds = 1,
Hearts = 2,
Spades = 3,
};
// ANCHOR_END: shared_enums_cpp