matze77 has asked for the wisdom of the Perl Monks concerning the following question:
Could someone help me with the correct syntax? To add a simple "string" to the path variable? This is the example code from the moduls web-page:
Win32::Env::PathOr Should i use a different Update: module, script, method whatever?use Win32::Env::Path; my $path = Win32::Env::Path->new( name => 'PATH', ); $path->add('C:\\strawberry');
|
|---|