mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
12 lines
85 B
Nim
12 lines
85 B
Nim
discard """
|
|
output: "DabcD"
|
|
"""
|
|
|
|
const
|
|
x = "abc"
|
|
|
|
var v = "D" & x & "D"
|
|
|
|
echo v
|
|
|