in reply to Re: Perl without webserver in windows
in thread Perl without webserver in windows
This has nothing to do with a web server although Perl like JAVA, Python and other languages can used in conjunction with web services.
Save this program as "Hello.pl".
Double click on that file.
I tested this on my Win 10 Active Perl environment and it works.use strict; use warnings; print "Hello World, hit 'enter' key to end this program!\n"; my $in =<STDIN>;
|
|---|