diff options
author | Andreas Rumpf <andreasrumpf@noname> | 2009-09-23 23:38:00 +0200 |
---|---|---|
committer | Andreas Rumpf <andreasrumpf@noname> | 2009-09-23 23:38:00 +0200 |
commit | 3f3dda5a77fa8faf6d97aa5a0ed3b0fc6e8c0918 (patch) | |
tree | 81fcf664ab2abfda200061e57fa488ae17b03192 /web/index.txt | |
parent | 66a7e3d37c0303997a6b1a3b7ec263dfb8c07748 (diff) | |
download | Nim-3f3dda5a77fa8faf6d97aa5a0ed3b0fc6e8c0918.tar.gz |
implemented multi methods
Diffstat (limited to 'web/index.txt')
-rwxr-xr-x | web/index.txt | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/web/index.txt b/web/index.txt index 5bc48801d..e0ca80eb3 100755 --- a/web/index.txt +++ b/web/index.txt @@ -52,6 +52,7 @@ Nimrod is efficient from pointers to manually managed memory. * Zero-overhead iterators. * Cross-module inlining. +* Dynamic method binding with inlining and without virtual method table. * Compile time evaluation of user-defined functions. * Whole program dead code elimination: Only *used functions* are included in the executable. @@ -78,10 +79,8 @@ Nimrod is elegant Nimrod's syntax is flexible enough. * Yet Nimrod can be parsed with an LL(1) parser. * Statements are grouped by indentation but can span multiple lines. - Indentation must not contain tabulators so **the compiler always sees - the code the same way as you do**. -* Nimrod is a simple language that leads to simple programs. However, - the language is not crippled in the name of simplicity. + Indentation must not contain tabulators so the compiler always sees + the code the same way as you do. Nimrod plays nice with others @@ -97,11 +96,10 @@ Nimrod plays nice with others * Nimrod's documentation syntax is a subset of the wonderfully readable plaintext markup syntax `reStructuredText <http://docutils.sourceforge.net/docs/user/rst/quickref.html>`_. - **The documentation generator is very flexible; this website has been generated - with it!** + The documentation generator is very flexible; this website has been generated + with it! - Roadmap to 1.0 ============== |