From 992a094b2ab2bd9af082dc991b11dad68dfa2846 Mon Sep 17 00:00:00 2001 From: InvisOn Date: Sun, 14 Jul 2019 00:02:58 +0200 Subject: [PATCH] Updated Feature suggestions (markdown) --- Feature-suggestions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Feature-suggestions.md b/Feature-suggestions.md index 48485ba..605c658 100644 --- a/Feature-suggestions.md +++ b/Feature-suggestions.md @@ -2,6 +2,8 @@ What features would you like to see in Nim (Use [needed-libraries repository](https://github.com/nim-lang/needed-libraries) for asking for libraries in the Nim Ecosystem.) +- Range to sequence and array. Example `let a = [1..3]` would be the same as let a = [1, 2, 3] + - "pure" mode - force usage of scoped variables (unless imported by from... import) and exact case match (like golang does). - lightweight threads with network io multiplexed.