我需要一个简单的用于perl的蛇游戏

人气:810 发布:2022-09-22 标签: perl

问题描述

我需要一个简单的蛇游戏,其代码使用perl。请帮助!! 谢谢 Jay

Hi, I need a simple snake game with code using perl. Please help !! Thanks Jay

#!usr/bin/perl

# ABSTRACT: Play the game
# PODNAME: snake.pl

use strict;
 se warnings;

BEGIN {
    if ( $^O eq 'darwin' && $^X !~ /SDLPerl$/ ) {
        exec 'SDLPerl', $0, @ARGV or die "Failed to exec SDLPerl: $!";
    }
}

use Games::Snake;
 
Games::Snake->new()->run();

exit;

__END__

=pod

=head1 SYNOPSIS

Start the game from the command line:

snake.pl

=head1 DESCRIPTION

This script starts the game. It will open a 800x600 window (plus the
size of the window frame). Use the arrow keys to control the snake.
Close the window to end the game.

=head1 SEE ALSO

=over 4

=item * L<Games::Snake>

=back

=cut

推荐答案

^ O eq ' darwin'&& ^O eq 'darwin' &&

^ X!〜/ SDLPerl ^X !~ /SDLPerl

/){ exec ' SDLPerl', / ) { exec 'SDLPerl',

630