in reply to Perl without webserver in windows

How can we run a perl script in Activeperl without web server in windows?

Replies are listed 'Best First'.
Re^2: Perl without webserver in windows
by hippo (Archbishop) on Jul 08, 2019 at 10:05 UTC
Re^2: Perl without webserver in windows
by Marshall (Canon) on Jul 09, 2019 at 01:32 UTC
    I run ActivePerl on my Windows 10 machine.

    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.

    use strict; use warnings; print "Hello World, hit 'enter' key to end this program!\n"; my $in =<STDIN>;
    I tested this on my Win 10 Active Perl environment and it works.
    To do more development with Perl, you will need to know how to use the "Command Line" of Windows.