Everything is in the title. But maybe I'm missing something! Here's my code : ``` def func root root.each do |elem| p elem p elem.pos func elem end end source = File.read('file.c') ast = C.parse(source) func ast ```