1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-10-18 13:08:09 +02:00
rustlings/exercises/enums
2022-12-30 08:14:13 -06:00
..
enums1.rs
enums2.rs
enums3.rs chore: update enums3.rs addressing extra parentheses usage with tuples 2022-12-30 08:14:13 -06:00
README.md

Enums

Rust allows you to define types called "enums" which enumerate possible values. Enums are a feature in many languages, but their capabilities differ in each language. Rusts enums are most similar to algebraic data types in functional languages, such as F#, OCaml, and Haskell. Useful in combination with enums is Rust's "pattern matching" facility, which makes it easy to run different code for different values of an enumeration.

Further information