summary refs log tree commit diff stats
path: root/tests/macros/tdump.nim
blob: e4c14dc6b26687c3ec080f2026f7b5c72007e0fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
  output: '''x = 10
x + y = 30
'''
"""

import future

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