From c165c5d98cd1dbbf43ba7b1b8fdcdd1a3cb9d868 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Thu, 22 Aug 2024 03:15:11 +0000 Subject: [PATCH] Update Examples --- Examples.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Examples.md b/Examples.md index 969b6a1..9ca1f3c 100644 --- a/Examples.md +++ b/Examples.md @@ -142,10 +142,6 @@ fn main() { println!("One element tuple: {:?}", (5u32,)); println!("Just an integer: {:?}", (5u32)); - let tuple = (1, "hello", 4.5, true); - let (a, b, c, d) = tuple; - println!("{:?}, {:?}, {:?}, {:?}", a, b, c, d); - let matrix = Matrix(1.1, 1.2, 2.1, 2.2); println!("{:?}", matrix); }