Re: I need help with Config:INI

2020-05-30 Thread David Santiago
Hope this helps :-) Basically the %hash variable contains another hash, and with spaces in keys you cannot use them with "<>" use Config; use Config::INI; my Str $IniFile = slurp "config.ini"; my %hash = Config::INI::parse($IniFile); dd %hash; print "\n"; for %hash.kv -> $section_name, %secti

Re: I need help with Config:INI

2020-05-30 Thread Peter Pentchev
On Fri, May 29, 2020 at 05:02:15PM -0700, ToddAndMargo via perl6-users wrote: > Hi All, > > I an not figure out how to read the hash. > > > ~~~ ini.test.pl6.ini ~ > # Raku: Confug::INI test INI > # edit at your own risk > > [Backup paramters] > target=B:\myDocsBackp\backup1

Re: I reproduced one of the errors!

2020-05-30 Thread Peter Pentchev
On Fri, May 29, 2020 at 04:36:41PM -0700, ToddAndMargo via perl6-users wrote: > On 2020-05-28 06:39, Peter Pentchev wrote: > > On Wed, May 27, 2020 at 03:12:01PM -0700, ToddAndMargo via perl6-users > > wrote: > > > > On 2020-05-27 14:32, Andy Bach wrote: > > > > > #!/usr/bin/env raku > > > > > my

Accidentally closed an issue

2020-05-30 Thread Joseph Brenner
I was just trying to comment on an issue I opened the other day, and I accidentally closed it. I don't see any way for me to re-open it, so I would guess I don't have permissions to do so. Could someone re-open this? https://github.com/rakudo/rakudo/issues/3728

Re: Accidentally closed an issue

2020-05-30 Thread JJ Merelo
Reopened El sáb., 30 may. 2020 a las 19:26, Joseph Brenner () escribió: > I was just trying to comment on an issue I opened the other day, and I > accidentally closed it. I don't see any way for me to re-open it, so > I would guess I don't have permissions to do so. Could someone > re-open this

Re: Accidentally closed an issue

2020-05-30 Thread Joseph Brenner
Thanks much. On 5/30/20, JJ Merelo wrote: > Reopened > > El sáb., 30 may. 2020 a las 19:26, Joseph Brenner () > escribió: > >> I was just trying to comment on an issue I opened the other day, and I >> accidentally closed it. I don't see any way for me to re-open it, so >> I would guess I don't

Re: I reproduced one of the errors!

2020-05-30 Thread ToddAndMargo via perl6-users
On 2020-05-30 04:19, Peter Pentchev wrote: On Fri, May 29, 2020 at 04:36:41PM -0700, ToddAndMargo via perl6-users wrote: Hi Peter, No doubt it is operating as designed. It would be a lot more friendly if "Str:U" was changed to "Str:D". Oh please! Oh Please! Sorry, I don't really understa

question on pod comments

2020-05-30 Thread ToddAndMargo via perl6-users
Hi All, I am somewhat confused about pod comments: https://docs.raku.org/language/syntax#Pod_comments Seems pretty straight forward. But when I look at https://github.com/tadzik/perl6-Config-INI/blob/master/lib/Config/INI.pm starting line 45, I see =begin pod =head1 NAME =head1 SYNOPSIS =he

Re: I need help with Config:INI

2020-05-30 Thread ToddAndMargo via perl6-users
Follow up. Special thanks to Peter and David! I wrote a sample program to explain things in my personal documentation: -T Raku: reading INI files: Example: ~ini.test.pl6.ini ~~~ # Raku: Config::INI test INI # edit at your own risk IHave=NoSection [Backup paramters] target

Re: question on pod comments

2020-05-30 Thread Kevin Pye
They're not Pod comments, they're Pod abbreviated blocks: https://docs.raku.org/language/pod Kevin. On Sun, 31 May 2020 at 12:43, ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > Hi All, > > I am somewhat confused about pod comments: > > https://docs.raku.org/language/syntax#Pod_co

Re: I need help with Config:INI

2020-05-30 Thread ToddAndMargo via perl6-users
On 2020-05-30 20:08, ToddAndMargo via perl6-users wrote: Follow up. I just opened An Example to consider adding to your documentation: https://github.com/tadzik/perl6-Config-INI/issues/17

Re: question on pod comments

2020-05-30 Thread ToddAndMargo via perl6-users
On Sun, 31 May 2020 at 12:43, ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: Hi All, I am somewhat confused about pod comments: https://docs.raku.org/language/syntax#Pod_comments Seems pretty straight forward. But when I look at https://github.com/tadz

Re: question on pod comments

2020-05-30 Thread Kevin Pye
As I said, they're abbreviated blocks. Keep reading. On Sun, 31 May 2020 at 13:30, ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > >> On Sun, 31 May 2020 at 12:43, ToddAndMargo via perl6-users > >> mailto:perl6-us...@perl.org>> wrote: > >> > >> Hi All, > >> > >> I am somewha

Re: question on pod comments

2020-05-30 Thread ToddAndMargo via perl6-users
On Sun, 31 May 2020 at 13:30, ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: >> On Sun, 31 May 2020 at 12:43, ToddAndMargo via perl6-users >> mailto:perl6-us...@perl.org> >> wrote: >> >> Hi A

Re: question on pod comments

2020-05-30 Thread Kevin Pye
While the original documentation you were referring to called them Pod comments, that's not really accurate. The full documentation (to which I referred you) calls them "Pod documents" which is much more descriptive. The Pod document is parsed by Rakudo, and the contents can be used. Pod documents

Re: question on pod comments

2020-05-30 Thread ToddAndMargo via perl6-users
On 2020-05-30 21:28, Kevin Pye wrote: While the original documentation you were referring to called them Pod comments, that's not really accurate. The full documentation (to which I referred you) calls them "Pod documents" which is much more descriptive. The Pod document is parsed by Rakudo, an

Re: I reproduced one of the errors!

2020-05-30 Thread Veesh Goldman
読めないと分かりませんよ。 On Sun, May 31, 2020, 02:23 ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > On 2020-05-30 04:19, Peter Pentchev wrote: > > On Fri, May 29, 2020 at 04:36:41PM -0700, ToddAndMargo via perl6-users > wrote: > > >> Hi Peter, > >> > >> No doubt it is operating as designed.

Re: I reproduced one of the errors!

2020-05-30 Thread Veesh Goldman
Sorry, my Japanese is mediocre. Meant to say that you can't complain about not understanding something if you haven't learned how to read it. On Sun, May 31, 2020, 09:05 Veesh Goldman wrote: > 読めないと分かりませんよ。 > > > On Sun, May 31, 2020, 02:23 ToddAndMargo via perl6-users < > perl6-us...@perl.org>