diff options
| author | bors <bors@rust-lang.org> | 2015-04-18 23:35:50 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-18 23:35:50 +0000 |
| commit | 00978a9879d882002c59c5f3474fbe0b858963a7 (patch) | |
| tree | 2bbed5f795e00f4439708bd25bdf99bea4bbb532 | |
| parent | a16640051dc24d151f432e12a85b70d68d757753 (diff) | |
| parent | 810757935e38aeaabfd8359fe157e74c837221df (diff) | |
| download | rust-00978a9879d882002c59c5f3474fbe0b858963a7.tar.gz rust-00978a9879d882002c59c5f3474fbe0b858963a7.zip | |
Auto merge of #24383 - avdi:patch-1, r=steveklabnik
"Dynamically typed" didn't seem like a relevant distinction; there are statically-compiled dynamically-typed languages. Another term that might work here (despite being notoriously vague) is "scripting languages".
| -rw-r--r-- | src/doc/trpl/hello-world.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/hello-world.md b/src/doc/trpl/hello-world.md index e58bac656d0..eec6fe62f22 100644 --- a/src/doc/trpl/hello-world.md +++ b/src/doc/trpl/hello-world.md @@ -147,7 +147,7 @@ $ ./main # or main.exe on Windows This prints out our `Hello, world!` text to our terminal. -If you come from a dynamically typed language like Ruby, Python, or JavaScript, +If you come from a dynamic language like Ruby, Python, or JavaScript, you may not be used to these two steps being separate. Rust is an ‘ahead-of-time compiled language’, which means that you can compile a program, give it to someone else, and they don't need to have Rust installed. If you |
