Nimrod -> Nim

This commit is contained in:
Dennis Felsing 2015-02-03 09:08:07 +01:00
parent a989172605
commit da08515880
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
What features would you like to see in Nimrod or the Nimrod Ecosystem:
What features would you like to see in Nim or the Nim Ecosystem:
- lightweight threads with network io multiplexed.
- if Nimrod had something like goroutine (ie multiplexed on networking and use native threads for other syscalls), then it will be ultimate language for server programming.
- if Nim had something like goroutine (ie multiplexed on networking and use native threads for other syscalls), then it will be ultimate language for server programming.
- <del>gem like functionality (gem install sinatra)</del>
- [babel](https://github.com/nimrod-code/babel)
@ -14,7 +14,7 @@ users could update the documentation in a simple way (and Araq
could take these suggestions and approve or reject them
quickly).
- A pastebin for nimrod on the Nimrod Homepage or somewhere else.
- A pastebin for nimrod on the Nim Homepage or somewhere else.
- Allow multiple ranges (eg 1..3,5..8), handle reverse ranges (eg 5..1, 3.. -3)
@ -29,7 +29,7 @@ quickly).
- easier sorting, that doesn't need wrestling with types.
- a ternary condition - like ?: in C, or iif()
- You can do: ``if cond: a else: b``, IIRC the ``?:`` won't make it into Nimrod.
- You can do: ``if cond: a else: b``, IIRC the ``?:`` won't make it into Nim.
- a simple way of indexing the last element of an array or sequence, to avoid long-hand code like ``arr[arr.len-1]``
- You can do: ``arr[arr.high]`` or ``arr[arr.low]`` for indexing the last and first element or an array or sequence.