From 685d2ef48101d8c8661036247bdaca30da5345f8 Mon Sep 17 00:00:00 2001 From: InvisOn Date: Sun, 14 Jul 2019 01:08:35 +0200 Subject: [PATCH] Updated Feature suggestions (markdown) --- Feature-suggestions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Feature-suggestions.md b/Feature-suggestions.md index 22a6e32..baaed55 100644 --- a/Feature-suggestions.md +++ b/Feature-suggestions.md @@ -2,7 +2,7 @@ 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.) -- additional string concatenation at assignment. Example `let a = "a" + "b"` or `let a = "a", "b"`. Both resulting in the string "ab". `let a = "a", "b"` seems more appropriate since `echo "a", "b"` already works. +- Additional string concatenation at assignment. Example `let a = "a" + "b"` or `let a = "a", "b"`. Both resulting in the string "ab". `let a = "a", "b"` seems more appropriate since `echo "a", "b"` already works. - Range to sequence and array. Example `let a = [1..3]` would be the same as `let a = [1, 2, 3]`, both resulting in `[1, 2, 3]`