diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-21 19:50:42 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-21 19:50:42 +0200 |
commit | 18f60ba07893c79100c8c576a717059f3da33c84 (patch) | |
tree | ccfe5929b02c0c5a7db5397ba9a1f171294e6d63 /example/src/animals/cow.rs | |
parent | 2d1a6b2d432408d74eb57e0bda3f7434617e1070 (diff) |
docs: rename example folder to examples
Diffstat (limited to 'example/src/animals/cow.rs')
-rw-r--r-- | example/src/animals/cow.rs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/example/src/animals/cow.rs b/example/src/animals/cow.rs deleted file mode 100644 index a75d750..0000000 --- a/example/src/animals/cow.rs +++ /dev/null @@ -1,24 +0,0 @@ -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"); - } - } -} |