blob: 4575f3af18dbf7895c16ec26d69aa284d5e6798f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
discard """
msg: '''1
2
3
1
2
3
1
2
3
1
2
3
aa
bb
aa
bb'''
"""
const s = @[1,2,3]
macro foo: stmt =
for e in s:
echo e
foo()
static:
for e in s:
echo e
macro bar(x: static[seq[int]]): stmt =
for e in x:
echo e
bar s
bar(@[1, 2, 3])
type
TData = tuple
letters: seq[string]
numbers: seq[int]
const data: TData = (@["aa", "bb"], @[11, 22])
static:
var m = data
for x in m.letters:
echo x
macro ff(d: static[TData]): stmt =
for x in d.letters:
echo x
ff(data)
|