Aw
    
    
  
  
  
view release on metacpan or search on metacpan
bin/apache/site_perl/Apache/Toe.pm view on Meta::CPAN
<p align="center"><strong>According to Apache Server $$</strong></p>
</body>
</html>
END
}
sub updateBoard
{
	if ( ref($_[0]) eq "Aw::Event" ) {
	#
	#  Remote Move
	#
		$board [ $_[0]->getIntegerField('Coordinate') ] = 'O';
	} else {
	#
	#  Local Move
    
  
  
  bin/ttt_client.pl view on Meta::CPAN
	if ( $moves == 9 ) {
		print "\nNo Winner This Time!\n";
		exit;
	}
}
sub updateBoard
{
shift;
	if ( ref($_[0]) eq "ARRAY" ) {
		#
		#  Local Move
		#
		$board { "$_[0]->[0],$_[0]->[1]" } = 'X';
	} else {
		#
		#  Remote Move
    
  
  
  lib/Aw/Event.pm view on Meta::CPAN
			return ( %{ $result } );
		}
		return ( @{ $result } );
	}
	$result;
}
sub update
{
my $block = shift;
my $struct;
	$block =~ s/^\{\n(.*?)\n(\s+)\} //sm;
	$struct = "$1";
	$struct =~ s/(\w+) (\w+)/   $2 => "$1"/g;
	$block =~ s/(\w+)\[\] => \{/$1 => \[/mg;
	$block =~ s/(\s+\{\n)(.*?)(\n\s+\})/$1$struct$3/smg;
    
  
  
  
( run in 0.340 second using v1.01-cache-2.11-cpan-a1d94b6210f )