Updated Feature suggestions (markdown)

This commit is contained in:
jlp765 2013-08-15 02:31:08 -07:00
parent d327e7f569
commit 3c093dc706
1 changed files with 10 additions and 0 deletions

View File

@ -23,3 +23,13 @@ quickly).
- % formating extended to include math precision (like provided by formatFloat, but in a concise % syntax way)
- easier sorting, that doesn't need wrestling with types.
- a ternary condition - like ?: in C, or iif()
- a simple way of indexing the last element of an array or sequence, to avoid long-hand code like arr[arr.len-1]
- a shorthand way of discarding the return value of a proc (to improve readability)
- a shorthand initialization of arrays or sequences, eg var x: array[0..25, int] = -1
would initialize all elements of x to -1