diff options
Diffstat (limited to 'web')
-rwxr-xr-x | web/community.txt | 2 | ||||
-rwxr-xr-x | web/index.txt | 23 |
2 files changed, 13 insertions, 12 deletions
diff --git a/web/community.txt b/web/community.txt index 7881cd5dc..99338d084 100755 --- a/web/community.txt +++ b/web/community.txt @@ -1,4 +1,4 @@ -Discuss Nimrod in our `forum <http://force7.de/heimdall>`_. +Discuss Nimrod in our `forum <http://forum.nimrod-code.org/>`_. Visit our project page at GitHub: http://github.com/Araq/Nimrod. diff --git a/web/index.txt b/web/index.txt index e9172c155..def04048e 100755 --- a/web/index.txt +++ b/web/index.txt @@ -14,16 +14,6 @@ power with Python's readability and C's performance.** Welcome to Nimrod ----------------- -.. container:: snippet - *Nimrod looks like this:* - - .. code-block:: nimrod - import strutils - - echo "List of ints (separate by whitespace): " - echo stdin.readLine.split.each(parseInt).max, - " is the maximum" - **Nimrod** is a new statically typed, imperative programming language, that supports procedural, object oriented, functional and generic programming styles while remaining simple and efficient. @@ -37,6 +27,17 @@ focuses on the 3E: efficiency, expressiveness, elegance (in the order of priority). +.. container:: snippet + *Nimrod looks like this:* + + .. code-block:: nimrod + import strutils + + echo "Type in a list of ints of ints (separate by whitespace): " + let tokens = stdin.readLine.split + echo tokens.each(parseInt).max, " is the maximum." + + Nimrod is efficient =================== @@ -67,7 +68,7 @@ Nimrod is expressive * Modern type system with local type inference, tuples, variants, generics, etc. * User-defineable operators; code with new operators is often easier to read - than code which overloads built-in operators. In the code snippet, the + than code which overloads built-in operators. For example, a ``=~`` operator is defined in the ``re`` module. * Macros can modify the abstract syntax tree at compile time. |