Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
First you need the roadmap of what you want to do. The other is to read one or both of the mentioned book below. Or book about beginning perl from the Oreily-Distributor. Maybe the book "Effective Perl Programming" from Joseph N. Hall can be an additional option. As mentioned in another mail f

What is the mean of the following syntax?

2022-08-02 Thread William Torrez Corea
Mean: !~ /\*/ I have the following code: if ($extension !~ /\*/) { $backup = $ARGV . $extension; } -- With kindest regards, William. ⢀⣴⠾⠻⢶⣦⠀ ⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system ⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org ⠈⠳⣄

Re: How to can develop a program

2022-08-02 Thread William Torrez Corea
On Tue, Aug 2, 2022 at 3:16 AM Christian Walde wrote: > On Tue, 02 Aug 2022 10:41:36 +0200, Ruprecht Helms (privat) < > rhe...@rheynmail.de> wrote: > > Am 02.08.22 um 10:07 schrieb Christian Walde: > >> On Mon, 01 Aug 2022 22:50:21 +0200, William Torrez Corea > >> wrote: > >> > >>> On Mon, Aug 1

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
Hi everybody, Am 02.08.22 um 11:16 schrieb Christian Walde: On Tue, 02 Aug 2022 10:41:36 +0200, Ruprecht Helms (privat) wrote: Am 02.08.22 um 10:07 schrieb Christian Walde: What you're describing is how to make a roadmap for the implementation of a specific program. William asked about l

Re: How to can develop a program

2022-08-02 Thread Christian Walde
On Tue, 02 Aug 2022 10:41:36 +0200, Ruprecht Helms (privat) wrote: Am 02.08.22 um 10:07 schrieb Christian Walde: On Mon, 01 Aug 2022 22:50:21 +0200, William Torrez Corea wrote: On Mon, Aug 1, 2022 at 8:16 AM Christian Walde wrote: On Sat, 23 Jul 2022 21:03:18 +0200, William Torrez Corea

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
for bigger developing-project the best thing is a roadmap, because you have to plan the steps what the thing should do. Start with a sheet of paper and a pencil and after that you can decide what programminglanguage to use and which module you want to start first. Regards, Ruprecht A

Re: How to can develop a program

2022-08-02 Thread Christian Walde
On Mon, 01 Aug 2022 22:50:21 +0200, William Torrez Corea wrote: On Mon, Aug 1, 2022 at 8:16 AM Christian Walde wrote: On Sat, 23 Jul 2022 21:03:18 +0200, William Torrez Corea < willitc9...@gmail.com> wrote: My goal: I want to create you should start [...] reading Modern Perl and Ovid's