mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
186 B
Nim
13 lines
186 B
Nim
discard """
|
|
action: "run"
|
|
"""
|
|
|
|
import strformat
|
|
|
|
type Obj = object
|
|
|
|
proc `$`(o: Obj): string = "foobar"
|
|
|
|
var o: Obj
|
|
doAssert fmt"{o}" == "foobar"
|
|
doAssert fmt"{o:10}" == "foobar " |