You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
188 B
Perl

#!/usr/bin/perl
use warnings;
use strict;
print( "What file would you like to create? " );
chomp( my $file = <STDIN> );
( $^O =~ /Win/ ) ? system( "cls" ) : system( "clear" );