summary refs log tree commit diff stats
path: root/tests/concat/tconcat.nim
blob: fdce3ea00db83c3731496867c2ed6b95dc55e2c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  output: "DabcD"
"""

const
  x = "abc"

var v = "D" & x & "D"

echo v