7a6f2973c5
Originally committed to SVN as r1759.
16 lines
441 B
Perl
16 lines
441 B
Perl
# Perl console script
|
|
# by Simone Cociancich
|
|
# This script simply call the registration function for the builtin perl console
|
|
# the perl console is chiefly intended as a development and debug tool
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
Aegisub::Script::set_info(
|
|
'Perl console',
|
|
"\nThis script provides a console for messing with the perl engine \\^^/
|
|
(if you break something don't complain >:)",
|
|
'ShB');
|
|
|
|
use Aegisub::PerlConsole;
|
|
register_console();
|