auto merge of #15247 : smenardpw/rust/patch-1, r=alexcrichton
./hello_world is not recognized on Windows. We can type either hello_world or hello_world.exe to run the executable. I chose "hello_world.exe", which seems more conventional on Windows.
This commit is contained in:
commit
db29e1b960
@ -160,7 +160,7 @@ Save the file, and then type this into your terminal window:
|
||||
|
||||
```{bash}
|
||||
$ rustc hello_world.rs
|
||||
$ ./hello_world # just 'hello_world' on Windows
|
||||
$ ./hello_world # or hello_world.exe on Windows
|
||||
Hello, world
|
||||
```
|
||||
|
||||
@ -243,7 +243,7 @@ There are now two files: our source code, with the `.rs` extension, and the
|
||||
executable (`hello_world.exe` on Windows, `hello_world` everywhere else)
|
||||
|
||||
```{bash}
|
||||
$ ./hello_world # or ./hello_world.exe on Windows
|
||||
$ ./hello_world # or hello_world.exe on Windows
|
||||
```
|
||||
|
||||
This prints out our `Hello, world!` text to our terminal.
|
||||
|
Loading…
Reference in New Issue
Block a user