Updated Feature suggestions (markdown)

This commit is contained in:
Solitude 2019-07-14 11:08:21 +03:00
parent cde48087df
commit 4b6b8f6069
1 changed files with 6 additions and 2 deletions

View File

@ -2,9 +2,13 @@ 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.
- ~~Multi-line strings just like Python.
`"Just like",`
`"this"`
`"this"`~~ There is
```nim
"""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"`.