diff --git a/Examples.md b/Examples.md index 8dce925..ccd4f54 100644 --- a/Examples.md +++ b/Examples.md @@ -1 +1,17 @@ This page selects some example programs from "Rust by Example" and shows their intended Husht equivalents. (Of course, the details of the syntax on the Husht side may vary.) + +#### Hello World +``` +// Many comments from the Rust by Example versionhave been removed +fn main() { + // Print text to the console. + println!("Hello World!"); +} +``` +<-> +``` +// Many comments from the Rust by Example versionhave been removed +fn main + // Print text to the console. + println! "Hello World!" +``` \ No newline at end of file