From fa5ad4847192ca78f2139cbb9cddee7995ff2bb1 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Thu, 22 Aug 2024 03:23:31 +0000 Subject: [PATCH] Update Examples --- Examples.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Examples.md b/Examples.md index 3322024..1c454b6 100644 --- a/Examples.md +++ b/Examples.md @@ -6,7 +6,7 @@ This page selects some example programs from "Rust by Example" and shows their i Rust Husht - + ``` @@ -18,7 +18,7 @@ fn main() { } ``` - + ``` // Many comments from the Rust by Example version @@ -26,6 +26,7 @@ fn main() { fn main // Print text to the console. println! "Hello World!" + ```