programming-examples/perl/Datatype/Execute date command and get user input.pl
2019-11-15 12:59:38 +01:00

8 lines
128 B
Perl

#!/usr/bin/perl -w
use strict;
print "using a string literal:\n";
print `date`;
print "backquotes error status: $?\n";