From 07d905c7124b83e3bc6229cad33782f1d79c4c41 Mon Sep 17 00:00:00 2001 From: James Zow Date: Fri, 13 May 2022 01:00:04 +0800 Subject: [PATCH] add README.md --- exercises/match/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 exercises/match/README.md diff --git a/exercises/match/README.md b/exercises/match/README.md new file mode 100644 index 00000000..d32e4a8b --- /dev/null +++ b/exercises/match/README.md @@ -0,0 +1,8 @@ +# Intro + +Rust uses the `print!` and `println!` macros to print text to the console. + +## Further information + +- [Hello World](https://doc.rust-lang.org/rust-by-example/hello.html) +- [Formatted print](https://doc.rust-lang.org/rust-by-example/hello/print.html)