Effective Perl Programming – write better, more idiomatic Perl
The Perl 5.12 yada yada operator
Perl v5.12 adds a placeholder operator, ..., called the yada yada operator, after an episode of Seinfeld where the interesting parts of the story are replaced with “yada yada yada”.
You can replace whole statements with ... and Perl will compile it. You can check that everything else compiles without having to fill in the bits you have deferred.
Being comments, these do compile, but being comments, they let the program continue past them like it worked despite part of it missing. The ... stops the program to remind you that you aren’t done yet.
The ... doesn’t work as a placeholder for terms or partial statements: