[up] [log] [?]
[first]  [entry] [exit]  [last]

(meg/match ~(sequence (number :d nil :tag) (capture (lenprefix (backref :tag) 1)))
           "3abc")

captures and tags
captures: @[3 3]
tagged-captures:
  tags: @[:tag :tag]
  values: @[3 3]

current frame
status: exiting frame 6 with value: 1
peg: (backref :tag)
text: 3abc
index: 1
matched: 

frames call stack
6 (backref :tag)
5 (lenprefix (backref :tag) 1)
4 (capture (lenprefix (backref :tag) 1))
0 (sequence (number :d nil :tag) (capture (lenprefix (backref :tag) 1)))