summaryrefslogtreecommitdiff
path: root/traits/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'traits/src/main.rs')
-rw-r--r--traits/src/main.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/traits/src/main.rs b/traits/src/main.rs
new file mode 100644
index 0000000..02e408b
--- /dev/null
+++ b/traits/src/main.rs
@@ -0,0 +1,26 @@
+use traits::{self, NewsArticle, Summary, Tweet, notify};
+
+fn main() {
+ let tweet = Tweet {
+ username: String::from("horse_ebooks"),
+ content: String::from("of course, as you probably already know, people"),
+ reply: false,
+ retweet: false,
+ };
+
+ println!("1 new tweet: {}", tweet.summarize());
+
+ let article = NewsArticle {
+ headline: String::from("Penguins win the Stanley Cup Championship!"),
+ location: String::from("Pittsburgh, PA, USA"),
+ author: String::from("Iceburgh"),
+ content: String::from(
+ "The Pittsburgh Penguins once again are the best \
+ hockey team in the NHL.",
+ ),
+ };
+
+ println!("New article available! {}", article.summarize());
+
+ notify(&article);
+}