mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
7 lines
189 B
Nim
7 lines
189 B
Nim
# Tests the new format proc (including the & and &= operators)
|
|
|
|
import strutils
|
|
|
|
echo("Hi $1! How do you feel, $2?\n" % ["Andreas", "Rumpf"])
|
|
#OUT Hi Andreas! How do you feel, Rumpf?
|