From cc58eb26ab2fcf4004324b62e62d53a4e05cc8eb Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Thu, 22 Aug 2024 03:12:15 +0000 Subject: [PATCH] Update Examples --- Examples.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Examples.md b/Examples.md index 3820d14..969b6a1 100644 --- a/Examples.md +++ b/Examples.md @@ -151,14 +151,15 @@ fn main() { } ``` - + ``` fn reverse(pair: (i32, bool)) -> (bool, i32) - let (int_param, bool_param) = pair; + let (int_param, bool_param) = pair (bool_param, int_param) + #[derive(Debug)] struct Matrix(f32, f32, f32, f32);