summary refs log tree commit diff stats
path: root/tests/macros/tdump.nim
blob: e4c14dc6b26687c3ec080f2026f7b5c72007e0fc (plain) (blame)
1
discard """
  output: '''x = 10
x + y = 30
'''
"""

import future

let
  x = 10
  y = 20
dump x
dump(x + y)