1package Yada::Yada::Yada;
2
3=head1 NAME
4
5Yada::Yada::Yada - defer coding to later
6
7=head1 SYNOPSIS
8
9  use Yada::Yada::Yada;
10
11  if ($something_is_true) {
12    ... # I'll fill this in later.
13  }
14
15=head1 DESCRIPTION
16
17For Perl 6 we've been promised a "yada yada yada" operator, which makes
18'...' valid syntax for "I'll fill this bit in later.", allowing the code
19to compile, but issue a run-time warning.
20
21But, like many of the other things that may or may not happen in Perl 6,
22we can already make this happen in Perl 5.
23
24All you need is to 'use Yada::Yada::Yada' and off you go ...
25
26=head1 AUTHOR
27
28Tony Bowden
29
30=head1 BUGS and QUERIES
31
32Please direct all correspondence regarding this module to:
33  bug-Yada-Yada-Yada@rt.cpan.org
34
35=head1 COPYRIGHT
36
37  Copyright (C) 2001-2005 Tony Bowden.
38
39  This program is free software; you can redistribute it and/or modify it under
40  the terms of the GNU General Public License; either version 2 of the License,
41  or (at your option) any later version.
42
43  This program is distributed in the hope that it will be useful, but WITHOUT
44  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
45  FOR A PARTICULAR PURPOSE.
46
47=cut
48
49$VERSION = '1.00';
50
51use strict;
52
53use Filter::Simple;
54
55FILTER_ONLY code =>
56 sub{ s/\.{3}/;require Carp; Carp::carp("Not implemented");/gsmo };
57
581;
59