Implementation of Lucifers Pastime
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
178B

  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use lib "./";
  5. use MNU;
  6. my $game_str;
  7. $game_str = "";
  8. while(($game_str = MNU->loop($game_str)) ne "QUIT"){
  9. printf("blah\n");
  10. }