summaryrefslogtreecommitdiffhomepage
path: root/rust.html.markdown
diff options
context:
space:
mode:
authorwoclass <inkydragon@users.noreply.github.com>2018-12-03 20:30:45 +0800
committerGitHub <noreply@github.com>2018-12-03 20:30:45 +0800
commitcd7816a2be62b0dcd2aca181d1aadd68b8e4d5d7 (patch)
treef75c300c92d40e29bf59f83775aec019b45e56e7 /rust.html.markdown
parent440247a59706603bd980016821ecd6a72a6182d1 (diff)
parent1fd955ae6479650b987a54a93b09507bfdf06954 (diff)
Merge pull request #1 from adambard/master
Update from Upstream
Diffstat (limited to 'rust.html.markdown')
-rw-r--r--rust.html.markdown9
1 files changed, 9 insertions, 0 deletions
diff --git a/rust.html.markdown b/rust.html.markdown
index 6b75fa87..71bc16b5 100644
--- a/rust.html.markdown
+++ b/rust.html.markdown
@@ -41,6 +41,7 @@ Rust not only fast, but also easy and efficient to code in.
// 1. Basics //
///////////////
+#[allow(dead_code)]
// Functions
// `i32` is the type for 32-bit signed integers
fn add2(x: i32, y: i32) -> i32 {
@@ -48,6 +49,9 @@ fn add2(x: i32, y: i32) -> i32 {
x + y
}
+#[allow(unused_variables)]
+#[allow(unused_assignments)]
+#[allow(dead_code)]
// Main function
fn main() {
// Numbers //
@@ -256,11 +260,16 @@ fn main() {
// `while` loop
while 1 == 1 {
println!("The universe is operating normally.");
+ // break statement gets out of the while loop.
+ // It avoids useless iterations.
+ break
}
// Infinite loop
loop {
println!("Hello!");
+ // break statement gets out of the loop
+ break
}
/////////////////////////////////