#!/usr/bin/perl 

eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}' # cargo culting
    if 0; # not running under some shell
use strict;
use warnings;
use lib 'lib';
use Devel::ebug::Wx;

my $app = Wx::SimpleApp->new;
$app->SetAppName( 'ebug_wx' );
my $wx = Devel::ebug::Wx->new( { argv => \@ARGV } );
$wx->Show;
$app->MainLoop;

__END__

=head1 NAME

ebug_wx - An extensible GUI Perl debugger

=head1 SYNOPSIS

  % ebug_wx calc.pl
  % ebug_wx "add.pl 3 4"

=head1 DESCRIPTION

ebug_wx is a GUI front end to L<Devel::ebug>.

=head1 SEE ALSO

L<Devel::ebug>, L<Devel::ebug::Wx>

=head1 AUTHOR

Mattia Barbon, C<< <mbarbon@cpan.org> >>

=head1 COPYRIGHT

Copyright (C) 2007, Mattia Barbon

This program is free software; you can redistribute it or modify it
under the same terms as Perl itself.
