microsoft-visualbasic-runtime/Scripting/test.pl

10 lines
107 B
Perl
Raw Normal View History

2018-08-02 20:14:48 +08:00
my $i = 0;
while ( $i != 10 ) {
print "current --> $i\n";
sleep(1);
$i = $i+1;
}
die "test";