We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rustc main.rs
1 parent 79a5448 commit f8bbf6dCopy full SHA for f8bbf6d
src/doc/guide.md
@@ -152,7 +152,7 @@ Save the file, and then type this into your terminal window:
152
153
```{bash}
154
$ rustc main.rs
155
-$ ./hello_world # or hello_world.exe on Windows
+$ ./main # or main.exe on Windows
156
Hello, world!
157
```
158
@@ -232,10 +232,10 @@ main.exe main.rs
232
233
234
There are now two files: our source code, with the `.rs` extension, and the
235
-executable (`hello_world.exe` on Windows, `hello_world` everywhere else)
+executable (`main.exe` on Windows, `main` everywhere else)
236
237
238
239
240
241
This prints out our `Hello, world!` text to our terminal.
0 commit comments