From cde48087df25630313cdd16032c84c9c400ab407 Mon Sep 17 00:00:00 2001 From: InvisOn Date: Sun, 14 Jul 2019 09:50:32 +0200 Subject: [PATCH] Updated Feature suggestions (markdown) --- Feature-suggestions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Feature-suggestions.md b/Feature-suggestions.md index 1b0fc61..aaa11a0 100644 --- a/Feature-suggestions.md +++ b/Feature-suggestions.md @@ -3,8 +3,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.) - Multi-line strings just like Python. - `"Just like", - "this" + `"Just like",` + `"this"` - ~~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.~~ There is `"a" & "b"`.