first sketch of Devel::Declare code
[gitmo/MooseX-Antlers.git] / notes / dd-example-input
1 use Method::Signatures::Simple;
2
3 method foo ($bar) { # foo
4   warn $bar;
5 }
6
7 main->foo("yay");