Updated Feature suggestions (markdown)

This commit is contained in:
Dominik Picheta 2013-08-15 04:45:23 -07:00
parent 3c093dc706
commit 79485dde2e
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ quickly).
- easier sorting, that doesn't need wrestling with types.
- a ternary condition - like ?: in C, or iif()
- a ternary condition - like ?: in C, or iif()
- You can do: ``if cond: a else: b``, IIRC the ``?:`` won't make it into Nimrod.
- a simple way of indexing the last element of an array or sequence, to avoid long-hand code like arr[arr.len-1]