diff options
author | Araq <rumpf_a@web.de> | 2014-08-28 22:36:14 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-28 22:36:14 +0200 |
commit | 3ea64469008c30682a0cc7b92e3f553a07f30a37 (patch) | |
tree | ec9f76f40b2fb55bc98873d8661b72f9c9ca63c1 /readme.md | |
parent | c95e47216f790f8aac9860a8a0deae0369a2a84f (diff) | |
download | Nim-3ea64469008c30682a0cc7b92e3f553a07f30a37.tar.gz |
Nimrod renamed to Nim
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/readme.md b/readme.md index e8c081d4e..83d6ef748 100644 --- a/readme.md +++ b/readme.md @@ -1,15 +1,15 @@ -# Nimrod Compiler -This repo contains the Nimrod compiler, Nimrod's stdlib, tools and +# Nim Compiler +This repo contains the Nim compiler, Nim's stdlib, tools and documentation. ## Compiling -Compiling the Nimrod compiler is quite straightforward. Because -the Nimrod compiler itself is written in the Nimrod programming language +Compiling the Nim compiler is quite straightforward. Because +the Nim compiler itself is written in the Nim programming language the C source of an older version of the compiler are needed to bootstrap the -latest version. The C sources are available in a separate repo [here](http://github.com/nimrod-code/csources). +latest version. The C sources are available in a separate repo [here](http://github.com/nim-code/csources). Pre-compiled snapshots of the compiler are also available on -[Nimbuild](http://build.nimrod-lang.org/). Your platform however may not +[Nimbuild](http://build.nim-lang.org/). Your platform however may not currently be built for. The compiler currently supports the following platform and architecture @@ -30,16 +30,16 @@ To build from source you will need: If you are on a fairly modern *nix system, the following steps should work: ``` -$ git clone git://github.com/Araq/Nimrod.git -$ cd Nimrod -$ git clone --depth 1 git://github.com/nimrod-code/csources +$ git clone git://github.com/Araq/Nim.git +$ cd Nim +$ git clone --depth 1 git://github.com/nim-code/csources $ cd csources && sh build.sh $ cd .. -$ bin/nimrod c koch +$ bin/nim c koch $ ./koch boot -d:release ``` -``koch install [dir]`` may then be used to install Nimrod, or you can simply +``koch install [dir]`` may then be used to install Nim, or you can simply add it to your PATH. More ``koch`` related options are documented in [doc/koch.txt](doc/koch.txt). @@ -48,16 +48,16 @@ The above steps can be performed on Windows in a similar fashion, the instead of ``build.sh``. ## Getting help -A [forum](http://forum.nimrod-lang.org/) is available if you have any +A [forum](http://forum.nim-lang.org/) is available if you have any questions, and you can also get help in the IRC channel on -[Freenode](irc://irc.freenode.net/nimrod) in #nimrod. If you ask questions on -[StackOverflow use the nimrod -tag](http://stackoverflow.com/questions/tagged/nimrod). +[Freenode](irc://irc.freenode.net/nim) in #nim. If you ask questions on +[StackOverflow use the nim +tag](http://stackoverflow.com/questions/tagged/nim). ## License The compiler and the standard library are licensed under the MIT license, except for some modules where the documentation suggests otherwise. This means -that you can use any license for your own programs developed with Nimrod, +that you can use any license for your own programs developed with Nim, allowing you to create commercial applications. Read copying.txt for more details. |