From 9ab2f550a25c3e4465afa025e4ffb1294b331bdb Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 19 Jul 2022 13:11:19 +0200 Subject: docs: split example into multiple files --- example/src/animals/cow.rs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 example/src/animals/cow.rs (limited to 'example/src/animals/cow.rs') diff --git a/example/src/animals/cow.rs b/example/src/animals/cow.rs new file mode 100644 index 0000000..a75d750 --- /dev/null +++ b/example/src/animals/cow.rs @@ -0,0 +1,24 @@ +use crate::interfaces::cow::ICow; + +pub struct Cow +{ + moo_cnt: i32, +} + +impl Cow +{ + pub fn new(moo_cnt: i32) -> Self + { + Self { moo_cnt } + } +} + +impl ICow for Cow +{ + fn moo(&self) + { + for _ in 0..self.moo_cnt { + println!("Moo"); + } + } +} -- cgit v1.2.3-18-g5258