summaryrefslogtreecommitdiffstats
path: root/examples/05_enum.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-07-02 02:54:21 -0400
committerJesse Luehrs <doy@tozt.net>2014-07-02 02:54:21 -0400
commite620daf3b1a40ae825c625bc4328fb7d2b3ee8b6 (patch)
treefaa469408ee78623eaa8d2720dcbb36096788ca1 /examples/05_enum.rs
downloadintro-to-rust-yapc-na-2014-e620daf3b1a40ae825c625bc4328fb7d2b3ee8b6.tar.gz
intro-to-rust-yapc-na-2014-e620daf3b1a40ae825c625bc4328fb7d2b3ee8b6.zip
initial commitHEADmaster
Diffstat (limited to 'examples/05_enum.rs')
-rw-r--r--examples/05_enum.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/05_enum.rs b/examples/05_enum.rs
new file mode 100644
index 0000000..304ad04
--- /dev/null
+++ b/examples/05_enum.rs
@@ -0,0 +1,11 @@
+enum Color {
+ Red,
+ Green,
+ Blue,
+}
+
+fn main () {
+ let c = Red;
+ println!("{}", match c { Red => "r", Green => "g", Blue => "b" });
+}
+