From efc2d4a476f8c0d4ed0d67bd496187ed76a55172 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 26 Jun 2014 15:40:52 -0400 Subject: [PATCH] TIL PATHEXT Thanks @chris-morgan :heart: --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 9a995de582e9..f7b100d6b05e 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -160,7 +160,7 @@ Save the file, and then type this into your terminal window: ```{bash} $ rustc hello_world.rs -$ ./hello_world # on Windows, this is ./hello_world.exe +$ ./hello_world Hello, world ```