From 79485dde2ee452ad356b73bf559a30d750ae973d Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 15 Aug 2013 04:45:23 -0700 Subject: [PATCH] Updated Feature suggestions (markdown) --- Feature-suggestions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Feature-suggestions.md b/Feature-suggestions.md index b3e0216..ca102f5 100644 --- a/Feature-suggestions.md +++ b/Feature-suggestions.md @@ -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]