Skip to content

Commit

Permalink
Add a stub for Algorithm::Soundex in perl 6
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Jun 28, 2011
0 parents commit b8bec40
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
7 changes: 7 additions & 0 deletions META.info
@@ -0,0 +1,7 @@
{
"name" : "Algorithm::Soundex",
"version" : "*",
"description" : "Soundex Algorithm in Perl 6",
"depends" : [],
"source-url" : "git://github.com/leto/perl6-Algorithm-Soundex.git"
}
28 changes: 28 additions & 0 deletions lib/Algorithm/Soundex.pm
@@ -0,0 +1,28 @@
use v6;

class Algorithm::Soundex {

}
=begin pod
=head1 NAME
Algorithm::Soundex - The Soundex Algorithm
=head1 DESCRIPTION
The very simple American Soundex algorithm, implemented in Perl 6.
=head1 SYNOPSIS
=begin code
INSERT CODE HERE
=end code
=head1 AUTHOR
Jonathan "Duke" Leto - L<jonathan@leto.net>
=end pod
5 changes: 5 additions & 0 deletions t/00-basic.t
@@ -0,0 +1,5 @@
use v6;
use Test;
use Algorithm::Soundex;

pass("Loaded Algorithm::Soundex");

0 comments on commit b8bec40

Please sign in to comment.