Re: how do I read registry key?

2019-12-25 Thread ToddAndMargo via perl6-users
On 2019-12-25 21:48, WFB wrote: BTW, hat would be also a great module for pushing to https://modules.raku.org/. Not sure my code is good enough for that. :'(

Re: how do I read registry key?

2019-12-25 Thread ToddAndMargo via perl6-users
On 2019-12-25 21:48, WFB wrote: On Wed, 25 Dec 2019 at 23:10, ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: Hi All, Windows https://docs.microsoft.com/en-us/windows/win32/sysinfo/retrieving-data-from-the-registry How do I use this to read retrieve a

Re: how do I read registry key?

2019-12-25 Thread WFB
On Wed, 25 Dec 2019 at 23:10, ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > Hi All, > > Windows > > > https://docs.microsoft.com/en-us/windows/win32/sysinfo/retrieving-data-from-the-registry > > How do I use this to read retrieve a value of a registry key? > > Many thanks, > -T >

how do I read registry key?

2019-12-25 Thread ToddAndMargo via perl6-users
Hi All, Windows https://docs.microsoft.com/en-us/windows/win32/sysinfo/retrieving-data-from-the-registry How do I use this to read retrieve a value of a registry key? Many thanks, -T

keywords in grammars

2019-12-25 Thread Alt Mcarter
I'm trying to write a toy BASIC to assembler. Here's my code so far: grammar G {     rule TOP    { }     rule stmts  { * }     rule statement  { | | }     rule print-stmt { 'print' }     rule for-loop   { 'for' '=' 'to'   'next' }     rule assign {