File: demo_DWIM.pl

package info (click to toggle)
libacme-bleach-perl 1.150-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 164 kB
  • ctags: 30
  • sloc: perl: 101; makefile: 10
file content (7 lines) | stat: -rwxr-xr-x 141 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
print "In the pre-DWIM light...\n";

use Acme::DWIM;

my ($x) = +("Hullo " x 3 . "world" & "~" x 30) =~ /(.*)/;
$x =~ tr/tnv/uow/;
print $x;