summaryrefslogtreecommitdiff
path: root/xmas/src
diff options
context:
space:
mode:
authorAdam Carpenter <53hornet@gmail.com>2019-03-27 15:32:37 -0400
committerAdam Carpenter <53hornet@gmail.com>2019-03-27 15:32:37 -0400
commit67cdcc2e12118becb823e20a40cc2687f2b8425a (patch)
treeed92c3234b89079e6d4cf36f5e80c5ffa79def48 /xmas/src
parente25482fca375d318a39c3b54db396b0db6e0b263 (diff)
downloadlearning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.tar.xz
learning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.zip
Started Rust in Action MEAP.
Diffstat (limited to 'xmas/src')
-rw-r--r--xmas/src/main.rs42
1 files changed, 0 insertions, 42 deletions
diff --git a/xmas/src/main.rs b/xmas/src/main.rs
deleted file mode 100644
index e725a26..0000000
--- a/xmas/src/main.rs
+++ /dev/null
@@ -1,42 +0,0 @@
-fn main() {
- let days = [
- "1st",
- "2nd",
- "3rd",
- "4th",
- "5th",
- "6th",
- "7th",
- "8th",
- "9th",
- "10th",
- "11th",
- "12th",
- ];
- let gifts = [
- "A partridge in a pear tree",
- "Two turtle doves and",
- "Three French hens",
- "Four calling birds",
- "Five golden rings",
- "Six geese a-laying",
- "Seven swans a-swimming",
- "Eight maids a-milking",
- "Nine ladies dancing",
- "Ten lords a-leaping",
- "Eleven pipers piping",
- "Twelve drummers drumming",
- ];
-
- // for each day
- for mut each in 0..12 {
- println!("\nOn the {} day of Christmas,", days[each]);
- println!("My true love gave to me");
-
- // print associated lyrics
- for i in (0..each+1).rev() {
- println!("{}", gifts[i]);
- }
-
- }
-}