File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -120,16 +120,6 @@ look like in Rust:
120120{{#rustdoc_include .. / listings / ch03 - common - programming - concepts / no - listing - 17 - functions - with - parameters / src / main . rs}}
121121```
122122
123- ``` rust
124- fn main () {
125- another_function (5 );
126- }
127-
128- fn another_function (x : i32 ) {
129- println! (" The value of x is: {}" , x ); // xの値は{}です
130- }
131- ```
132-
133123<!--
134124Try running this program; you should get the following output:
135125-->
Original file line number Diff line number Diff line change @@ -381,13 +381,6 @@ like this:
381381``` rust,ignore
382382{{#rustdoc_include ../listings/ch03-common-programming-concepts/no-listing-32-loop/src/main.rs}}
383383```
384- ``` rust,ignore
385- fn main() {
386- loop {
387- println!("again!"); // また
388- }
389- }
390- ```
391384
392385<!--
393386When we run this program, we’ll see `again!` printed over and over continuously
You can’t perform that action at this time.
0 commit comments