Skip to content

Instantly share code, notes, and snippets.

@dns2utf8
Last active March 15, 2021 16:47
Show Gist options
  • Save dns2utf8/896ab69c2739b530c1318b3bbe4d61ce to your computer and use it in GitHub Desktop.
Save dns2utf8/896ab69c2739b530c1318b3bbe4d61ce to your computer and use it in GitHub Desktop.
// Source: https://gist.github.com/dns2utf8/896ab69c2739b530c1318b3bbe4d61ce
enum ABC {
A,
B,
C,
}
// use ABC::*; // <-- enable this
fn main() {
match ABC::C {
A => {
println!("Hello, A!");
}
}
}
@dns2utf8
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment