6 lines
108 B
Perl
6 lines
108 B
Perl
#!/usr/bin/perl -w
|
|
|
|
$return_value = system("START NOTEPAD");
|
|
|
|
print "System returned $return_value\n";
|