Re: Pike Mailing List

2021-10-18 Thread Duke Normandin
On Tue, 19 Oct 2021 01:24:38 + (UTC) Lance Dillon wrote: > I'm on the list, but I don't respond much and others know more > than me.but I enjoy the language and learn stuff on this > list... Glad to know you! You're a Pike guru compared to me! And that's no lie! LOL > There are a few ot

Re: Pike Mailing List

2021-10-18 Thread Lance Dillon
I'm on the list, but I don't respond much and others know more than me.but I enjoy the language and learn stuff on this list... There are a few others too, 4 or 5.. Sent from Yahoo Mail on Android On Mon, Oct 18, 2021 at 9:18 PM, Duke Normandin wrote: @Chris Are you pretty much the

Pike Mailing List

2021-10-18 Thread Duke Normandin
@Chris Are you pretty much the only active, knowledgeable participant in the Pike list? -- Duke

Re: Arrays

2021-10-18 Thread Duke Normandin
On Tue, 19 Oct 2021 10:07:43 +1100 Chris Angelico wrote: [snip] > > set warnings strict That worked swell in my Hilfe! Thx -- Duke

Re: Arrays

2021-10-18 Thread Duke Normandin
On Tue, 19 Oct 2021 10:07:43 +1100 Chris Angelico wrote: > On Tue, Oct 19, 2021 at 10:03 AM Duke Normandin > wrote: > > > > On Tue, 19 Oct 2021 09:26:34 +1100 > > Chris Angelico wrote: > > > > > On Tue, Oct 19, 2021 at 9:19 AM Duke Normandin > > > wrote: > > > > > > > > Pike v8.0 release 702 r

Re: Arrays

2021-10-18 Thread Chris Angelico
On Tue, Oct 19, 2021 at 10:03 AM Duke Normandin wrote: > > On Tue, 19 Oct 2021 09:26:34 +1100 > Chris Angelico wrote: > > > On Tue, Oct 19, 2021 at 9:19 AM Duke Normandin > > wrote: > > > > > > Pike v8.0 release 702 running Hilfe v3.5 (Incremental Pike > > > Frontend) > > > > > > > array(string)

Fredrik Hübinette Book

2021-10-18 Thread Duke Normandin
I'm reading it online. Is it still recommended, or is there something more current and as thorough? -- Duke

Re: Arrays

2021-10-18 Thread Duke Normandin
On Tue, 19 Oct 2021 09:26:34 +1100 Chris Angelico wrote: > On Tue, Oct 19, 2021 at 9:19 AM Duke Normandin > wrote: > > > > Pike v8.0 release 702 running Hilfe v3.5 (Incremental Pike > > Frontend) > > > > > array(string) flat = ({"this", "that", "the", "other"}); > > > flat[1];(4) Result: "that"

Re: Arrays

2021-10-18 Thread Chris Angelico
On Tue, Oct 19, 2021 at 9:19 AM Duke Normandin wrote: > > Pike v8.0 release 702 running Hilfe v3.5 (Incremental Pike Frontend) > > > array(string) flat = ({"this", "that", "the", "other"}); > > flat[1];(4) Result: "that" > > > flat[1]=3; > (5) Result: 3 > > > flat[1]; > (6) Result: 3 > > I was und

Arrays

2021-10-18 Thread Duke Normandin
Pike v8.0 release 702 running Hilfe v3.5 (Incremental Pike Frontend) > array(string) flat = ({"this", "that", "the", "other"}); > flat[1];(4) Result: "that" > flat[1]=3; (5) Result: 3 > flat[1]; (6) Result: 3 I was under the impression that array(string) would exclude any other data types but s