From e0fb572dd0b12e0cd80aebcdc26eb64f94d39df0 Mon Sep 17 00:00:00 2001
From: Stringer <gui.potier@gmail.com>
Date: Thu, 19 Sep 2013 14:27:52 -0700
Subject: [PATCH] Updated Feature suggestions (markdown)

---
 Feature-suggestions.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Feature-suggestions.md b/Feature-suggestions.md
index ca102f5..1bd6018 100644
--- a/Feature-suggestions.md
+++ b/Feature-suggestions.md
@@ -28,9 +28,10 @@ quickly).
 - 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]
+- 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.
 
 - 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 
+would initialize all elements of x to -1 
\ No newline at end of file