tdollar.nim 257 B

12345678910111213
  1. discard """
  2. output: '''
  3. used: Foo(123, 456)
  4. debugging: Foo(123, 456)
  5. '''
  6. """
  7. import mdollar2, mdollar3 # `mdollar1` not imported, so `mdollar1.$` not in scope
  8. let f = makeFoo(123, 456)
  9. useFoo(f) # used: Foo(123, 456)
  10. debug(f) # debugging: Foo(123, 456)