6 lines
193 B
Perl
6 lines
193 B
Perl
|
|
||
|
print "The date is ", 'date /T';
|
||
|
print "The date is 'date'", ".\n"; # Backquotes treated literally
|
||
|
$directory='cd';
|
||
|
print "\nThe current directory is $directory.";
|