Updated Feature suggestions (markdown)

This commit is contained in:
InvisOn 2019-07-14 09:50:32 +02:00
parent 852c5fd6fc
commit cde48087df
1 changed files with 2 additions and 2 deletions

View File

@ -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"`.