mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
277 B
Nim
13 lines
277 B
Nim
discard """
|
|
file: "tformat.nim"
|
|
output: "Hi Andreas! How do you feel, Rumpf?"
|
|
"""
|
|
# 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?
|
|
|
|
|