summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-01-31 03:50:29 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-01-31 03:50:29 -0500
commit008781e2f4f073ccf2fdb1225d705f256b318449 (patch)
treec43b3d30c0d012f53fe0833a108c14a9afa5afe1
parent5960d197c36cff4fefcb0bb8ed11cba9d9865407 (diff)
downloadgames-word-008781e2f4f073ccf2fdb1225d705f256b318449.tar.gz
games-word-008781e2f4f073ccf2fdb1225d705f256b318449.zip
module stuff
-rw-r--r--lib/Games/Word.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Games/Word.pm b/lib/Games/Word.pm
index 0b57357..d9f4801 100644
--- a/lib/Games/Word.pm
+++ b/lib/Games/Word.pm
@@ -1,5 +1,9 @@
#!perl
package Games::Word;
+require Exporter;
+@ISA = qw/Exporter/;
+@EXPORT_OK = qw/random_permutation is_permutation/;
+
use strict;
use warnings;
use Math::Combinatorics qw/factorial/;