Re: perl 6 equivalent of "use warnings"

2017-01-11 Thread Siavash
Hi, >From https://docs.perl6.org/language/5to6-nutshell#warnings "Warnings are now on by default. no warnings is currently NYI, but putting things in a quietly {} block will silence." On 2017-01-12 03:42:22 GMT, ToddAndMargo wrote: > Hi All, > > Is there a perl 6 equivalent of perl 5's "

Re: Simple windows code example needed

2017-01-11 Thread Lloyd Fournier
Ah. If that's the case I have nothing useful to contribute :| LL On Thu, Jan 12, 2017 at 4:15 PM Brandon Allbery wrote: > > On Thu, Jan 12, 2017 at 12:11 AM, Lloyd Fournier > wrote: > > say "hello world"; > or on the command line: > perl6 -e 'say "hello world"' > > There are no headers :) > >

Re: modules in windows?

2017-01-11 Thread Lloyd Fournier
The module installers I know of are: https://github.com/ugexe/zef https://github.com/tadzik/panda They should be able to do what you need :) On Thu, Jan 12, 2017 at 1:50 PM ToddAndMargo wrote: > Hi All, > > In Windows, other than writing for it and having it crash, how > do I tell if I have a

Re: perl 6 equivalent of "use warnings"

2017-01-11 Thread Brandon Allbery
Instead of enabling warnings, you disable them on a case by case basis with "quietly" e.g. perl6 -e 'my $foo; quietly say "is $foo"'. Likewise, "strict" is the default. On Thu, Jan 12, 2017 at 12:12 AM, Lloyd Fournier wrote: > Nope. Perl6 warns you without asking for it. > > LL > > On Thu, Jan 1

Re: Simple windows code example needed

2017-01-11 Thread Brandon Allbery
On Thu, Jan 12, 2017 at 12:11 AM, Lloyd Fournier wrote: > say "hello world"; > or on the command line: > perl6 -e 'say "hello world"' > > There are no headers :) > I parsed that request as asking how to write a GUI program, fwiw. -- brandon s allbery kf8nh sine no

Re: perl 6 equivalent of "use warnings"

2017-01-11 Thread Lloyd Fournier
Nope. Perl6 warns you without asking for it. LL On Thu, Jan 12, 2017 at 2:43 PM ToddAndMargo wrote: Hi All, Is there a perl 6 equivalent of perl 5's "use warnings"? Many thanks, -T

Re: Simple windows code example needed

2017-01-11 Thread Lloyd Fournier
say "hello world"; or on the command line: perl6 -e 'say "hello world"' There are no headers :) LL On Thu, Jan 12, 2017 at 2:28 PM ToddAndMargo wrote: Hi All, Please forgive me being a mooch here. Would some kind person please write me a simple Windows perl 6 script so that I can see the he

perl 6 equivalent of "use warnings"

2017-01-11 Thread ToddAndMargo
Hi All, Is there a perl 6 equivalent of perl 5's "use warnings"? Many thanks, -T

Simple windows code example needed

2017-01-11 Thread ToddAndMargo
Hi All, Please forgive me being a mooch here. Would some kind person please write me a simple Windows perl 6 script so that I can see the headers? A simple write "hello" to the screen will suffice. Many thanks, -T -- ~~ Computers are like air conditioners.

modules in windows?

2017-01-11 Thread ToddAndMargo
Hi All, In Windows, other than writing for it and having it crash, how do I tell if I have a module installed? I want this one, among others: https://github.com/araraloren/Net-FTP If I don't have the module, how do I install it? Many thanks, -T -- ~~ Comput

Re: JIT?

2017-01-11 Thread ToddAndMargo
On 01/11/2017 06:43 PM, yary wrote: You don't need JIT! It's an implementation detail that doesn't affect functionality. In theory it improves speed at which Perl6 code runs. In practice, it won't make a bit of difference with FTP

Re: JIT?

2017-01-11 Thread yary
You don't need JIT! It's an implementation detail that doesn't affect functionality. In theory it improves speed at which Perl6 code runs. In practice, it won't make a bit of difference with FTP client/server programs.

JIT?

2017-01-11 Thread ToddAndMargo
Hi All, I was looking for downloading Perl 6 for windows from http://rakudo.org/downloads/star/ rakudo-star-2016.11-x86_64 (JIT).msi rakudo-star-2016.01-x86 (no JIT).msi Supposedly JIT is "Runtime optimization of hot code paths during execution" Don't have a clue what that is. The code I

Introducing Inform, was Re: zenity sub

2017-01-11 Thread Richard Hainsworth
This request actually was something I wanted a lot, but since experimenting with GTK::Simple, something seemed possible. Hence the Inform (actually Informative) module. It's in the modules ecosystem and installs with Panda. (Panda install Inform) To get a popup dialog box inside a Perl 6 pro