mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-02-07 04:52:12 +00:00
backing up sublime settings
This commit is contained in:
13
Packages/SublimeREPL/config/Perl/re.pl
Normal file
13
Packages/SublimeREPL/config/Perl/re.pl
Normal file
@@ -0,0 +1,13 @@
|
||||
$| = 1;
|
||||
|
||||
while(true) {
|
||||
print "perl> ";
|
||||
$line=<>;
|
||||
$value=eval($line);
|
||||
$error=$@;
|
||||
if( $error ne "" ) {
|
||||
print $error;
|
||||
} else {
|
||||
print "$value\n";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user