8 lines
124 B
Perl
8 lines
124 B
Perl
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict;
|
||
|
|
||
|
print "enter a string to pass to die: ";
|
||
|
chomp(my $string = <STDIN>);
|
||
|
|
||
|
die($string);
|