Why do we need to reinvent this wheel ?
Most of the platforms out there have some binary packaging system.
Solaris has their own, Linuxen have rpm/deb or whatever else they have.
ActiveState with its binary Perl distributions have ppm and while that's
not perfect we read that they are working on f
On 1/28/06, Tels <[EMAIL PROTECTED]> wrote:
> Moin,
>
> On Saturday 28 January 2006 08:20, Tyler MacDonald wrote:
> > Gabor Szabo <[EMAIL PROTECTED]> wrote:
> > >
> > > Anyway I think instead of trying to setup our own binary distribution
> >
When installing a module ( in this case Sub-Uplevel-0.09 on 5.8.8)
using CPANPLUS I saw many warnings passing by but as all the tests
were successful the report to the CPAN Testers was sent as PASS.
it would be useful to capture warnings printed on the screen
and then even somehow report this mino
Hmm, I don't really know how to do this but Gaal told me to
write up some proposal here.
So we had chmod in Perl5, I would like to make sure it works in
Perl6 as well with slight modifications.
LIST = chmod MODE, LIST
1) In list context it would return the names of the files successfully
ch
On 3/25/06, Nicholas Clark <[EMAIL PROTECTED]> wrote:
> On Sat, Mar 25, 2006 at 12:58:30PM +0200, Gabor Szabo wrote:
> > 4) "filename".chmod(MODE) should also work and I guess
> > .chmod(MODE) should also work on those 3 files
>
> That seems to be implyi
On 3/26/06, Mark Overmeer <[EMAIL PROTECTED]> wrote:
> > LIST = chmod MODE, LIST
>
> My feeling is that this function design is a bit of a mistake. Usually,
> one perl function maps on one operating-system function, but in this case
> it doesn't: it simulated the common chmod(1) user command.
[..
I must be missing something but I don't understand why is there
no module that would provide the W3C validation without hitting
http://validator.w3.org and without the need to setup a similar web site?
WWW::CheckSite::Validator uses that web site
WebService::Validator::HTML::W3C provides an inter
I checked it again, one can download the source code of their service
from here http://validator.w3.org/source/
and it is even packaged in some of the linux distros.
(It is of course slightly outdated on Debian)
Someone might want to write a wrapper around it
or maybe use WebService::Validator::
On Ubuntu it was quite straigt forward, I think this is everything I needed:
sudo apt-get install subversion
sudo apt-get install ghc6
mkdir ~/src
cd ~/src
# To compile Parrot
svn co https://svn.perl.org/parrot/trunk parrot
cd parrot
perl Configure.pl --prefix=$HOME/parrot --cc=cc --cxx=CC --li
On 5/23/06, James E Keenan <[EMAIL PROTECTED]> wrote:
Gabor Szabo wrote:
> On Ubuntu it was quite straigt forward, I think this is everything I
> needed:
>
> sudo apt-get install subversion
> sudo apt-get install ghc6
>
Given that, in the above, you installed subversio
On 5/23/06, Chris Yocum <[EMAIL PROTECTED]> wrote:
1|2|3
I would say something like:
print $array[0] . "|" . $array[1] . "|" . $array[2] . "\n";
not the best way but it works.
In Perl6 if say something like this:
print @array[0] ~ "|" ~ @array[1] ~ "|" ~ @array[2] . "\n";
I get
1 2 3 | |
if eval "command" fails, where can I get the error message ?
aka $@ in P5 ?
Gabor
On 5/25/06, David Cantrell <[EMAIL PROTECTED]> wrote:
I might be able to host a virtual machine with perl6 on it and give out
accounts. I need to think about how to stop people being naughty
though.
Probably the easy part is to to remove the most dangerous calls such as
eval and system and the
sligthly related to the Perl6 wiki issue,
is there a perldoc command or a podparser implemented in Perl6 already ?
Gabor
[
I am sorry this will not respond directly to the message in question as
I have not seen it in my inbox. I hope the attribution is correct though.
]
On 5/26/06, Dr.Ruud <[EMAIL PROTECTED]> wrote:
>> Not really. Think about a Cobol-to-Parrot translator. You could for
>> example use Perl (glu
If anybody is interested on this list,
the slides and the examples of my 2 days course are available here:
http://www.szabgab.com/perl_in_test_automation.html
regards
Gabor
On 6/26/06, Leon Brocard <[EMAIL PROTECTED]> wrote:
This is really neat. You might want to add a link to Test::Expect too,
which makes it almost to easy to test terminal-based programs.
I only recently saw Test::Expect, I'll look at it more deeply and
will include a set of examples using it as
On 6/25/06, Ian Langworth <[EMAIL PROTECTED]> wrote:
Looks a little familiar.. Great job!
I first wrote it about 2 years ago but only recently decide to
make it available to the general public.
I decided to do so now so it won't come out after the
Big Perl Testing Book you mentioned in here:
ht
As Test::Expect was just mentioned here, I would like to know why Expect and
thus Test::Expect does NOT work on Windows?
I have also asked this on use.perl:
http://use.perl.org/~gabor/journal/30069
Gabor
Using Test::WWW::Mechanize 1.10 I am trying to
$w->page_links_ok();
on a page that has an e-mail address in it and the test fails.
How could I tell TWM not to bother with the mailto links on the page?
Gabor
On 7/6/06, Andy Lester <[EMAIL PROTECTED]> wrote:
On Jul 6, 2006, at 10:22 AM, Gabor Szabo wrote:
> Using Test::WWW::Mechanize 1.10 I am trying to
> $w->page_links_ok();
>
> on a page that has an e-mail address in it and the test fails.
>
> How could I tell TWM no
During web testing using Test::WWW::Mechanize I can check if
the current page has the correct links (by fetching all links)
and if the pages has the correct forms with the correct input fields.
How can I check other HTML constructs?
Specifically I know there should be two tables on the page.
One
On a form the submit button looks like this:
when this form is submitted using
$w->submit_form (
fields => {
fname => 'Foo',
});
the field submit and its value Update does not seem to be sent
to web server. If I add
submit => 'Update',
to the list of the
On 7/11/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> How can I fix this?
WWW::Mechanize(3pm)
$mech->submit_form( ... )
This method lets you select a form from the previously fetched page,
fill in its fields, and submit it. It combines the form_number/form_name,
set_
On 7/11/06, Andy Lester <[EMAIL PROTECTED]> wrote:
On Jul 11, 2006, at 9:07 AM, Gabor Szabo wrote:
> If button is not passed, then the "submit()" method is used
> instead.
Perhaps it could be clearer then: submit() does not pass any button
unless you specify it
While checking if the versions of all the modules are as
required in our installation I am using the following one liner to
fetch the version numbers.
perl -MModule -e'print $Module::VERSION'
Some of the modules print extra error messages and some print
only error messages.
I have sent e-mail to
On 7/13/06, Fergal Daly <[EMAIL PROTECTED]> wrote:
I could change it so that it tries to figure out whether it's being
used for real or not and disable the END block code but that's stress
and hassle. As a module author, as far as I'm concerned, if MakeMaker
can figure out my version then my job
Hi all,
what is the current best practices for testing code that forks?
I saw there was a recent discussion about patching Test::More
to support forking.
Is that going to happen or are there better ways to do it?
Gabor
On 7/19/06, Michael G Schwern <[EMAIL PROTECTED]> wrote:
Descriptions are optional because they are not necessary for the test.
Sometimes a test doesn't need a description, its obvious from reading
the code what its doing. Sometimes it would be redundant. Sometimes
you're just writing fast. I
On http://www.pugscode.org/ when I click "Download"
I get to the wiki on rakudo and (yippi it works again !)
but the link to the Win32 binary builds of Pugs and Parrot
brings me to http://jnthn.net/public_html/perl6/ which is 404.
Gabor
On 2/26/07, Geoffrey Broadwell <[EMAIL PROTECTED]> wrote:
Hmmm. Let's see if there is a way I can help to get what I want
Assuming that the answer to my question in the other thread is "packed
arrays aren't implemented anywhere yet", are any implementations close
enough that I can trade te
On 12 Mar 2007 14:29:49 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hi all,
I'd like to get opinions from developers on this list. I'm looking
into this system that executes massive amounts of Perl 5 code on a
Perl 5.8 interpreter. The system burns tons of CPU while running Perl
code, a
I have a script using Term::ReadLine to get input.
I'd like to test it by executing it using another script
and providing answers from the script test script.
I tried IPC::Run with no success but as I notice even simple redirection
such as
input.pl < in.txt
does not work.
Any ideas how to au
While trying to install WWW::Mechanize today some of its tests failed:
Failed Test Stat Wstat Total Fail Failed List of Failed
---
t/live/follow.t 2 512112 18.18% 6-7
t/live/follow_link.t 255
On Wed, 29 Dec 2004, Michael G Schwern wrote:
At least when *I* try to access Google with a browser I
don't see such a link.
I do see such a link but its possible Google is showing you a different
page because you're coming from .il.
yes, that might be the case.
This brings me to the question, or t
So far I have been using Devel::Cover only in cases where I run code
to be analyzed directly.
I wonder how should I setup Devel::Cover to test a web application
while my test suit is
actually using WWW::Mechanize and I am exercising the relevant code
via a real web server?
How to check the covera
On Wed, 30 Mar 2005 21:45:23 -0600, Walter Goulet <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Ok, so I've been trying to get started with testing Net-SSLeay for the
> Phalanx project. Now the problem I've been having is getting my arms
> around how to improve the coverage of the tests included with that
Where would we be without your work ?
Out in the desert to fall prey to any bug ?
At least we can run and get some cover.
Thank you !
Gabor
Is there some command line tool that can be used to report bugs to RT ?
Something that after I saw that make test fails (or even if it just
prints warnings) I can type some command line magic and will submit
a bug report with all the relevant information including the output
of make test.
Simila
On Wed, 5 May 2004, Andy Lester wrote:
> On Wed, May 05, 2004 at 11:40:32PM -0200, Gabor Szabo ([EMAIL PROTECTED]) wrote:
> > Is there some command line tool that can be used to report bugs to RT ?
>
> Sure, it's called "sendmail".
>
> If you want to send a bu
On Fri, 21 May 2004, Paul Johnson wrote:
> On Thu, May 20, 2004 at 04:34:39PM -0400, Geoffrey Young wrote:
>
> > hi paul.
> >
> > I've found that in a statement like
> >
> > $x{foo} ||= 1;
> >
>
> This is unlikely to be the only case in which I have not fully
> understood the subtleties of the
purple
>
> >> I might like to signal Devel::Cover that func() has a constant return (or
> >> lack thereof).
> >
> >
>
> however, in the process of development we are required to analyze any of the
> inevitable gaps and decide whether the unhit condition is valid. if it is
> we write a test f
I am dealing with a module which has a test.pl using Test.pm
Specifically I am talking about HTML::Template for which I try to
act as a hoplite.
I am trying to add a bunch of tests in t/ using Test::More but
in order to make sure we don't lose any previous test we would like to
keep the test.pl
I would like to test a module for unsuccessful "require" while the
required module is installed. That is I'd like ot test how my code would
work if Foo.pm was not present.
In the middle of a module I have code such as
eval {
require Foo;
};
if ($@) {
foo();
} else {
my_own_foo();
}
I a
On Tue, 6 Jul 2004, Oliver Schnarchendorf wrote:
> On Tue, 6 Jul 2004 13:12:16 +0800, Kelvin Wu wrote:
> > dunno whether this is the right place to post, but i am looking for a
> > solution(for both win32 and linux), something like microsoft passport,
> > one login account can be used cross over d
I can see from the testers page that Devel::Cover is supposed
to work on Windows.
Is there a ppd distribution of it somewhere so I can install
it on ActivePerl without a compiler ?
Currently if I type
ppm install Devel::Cover
I get version 0.2 of Devel::Coverage. Not what I wanted.
Gabor
On Fri, 16 Jul 2004, Jan Dubois wrote:
> I've forwarded your message to our build engineer to look into.
>
> Please send questions about PPM build process to the ppm mailing list
> (it only accepts messages from subscribers though).
>
Thanks everyone for dealing with this. I hope we'll see DC
bui
On Sat, 24 Jul 2004, Thomas Klausner wrote:
> > - Test coverage.
>
> Impossibly, because CPANTS does not run code.
But it could fetch it from some other place that does it, right ?
What about adding (optional) coverage reports to the reports
the CPAN testers send in ?
Gabor
On Sat, 24 Jul 2004, Thomas Klausner wrote:
> > What about adding (optional) coverage reports to the reports
> > the CPAN testers send in ?
>
> That might be a good idea. But AFAIK, coverage reports can vary greatly on
> different platforms/Perls/installed modules
IMHO this is exactly the reason
Good evening,
I am trying to use cpansmoke but I have a couple of issues
1) How can I say if I don't want to test a class of modules ?
e.g.
non of the Win32::* modules as I am on linux
no Oracle related modules as I have no Oracle
etc.
2) How can I run smoking on a machine th
On this page
http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/Repository
there are two links to the build status of various CPAN modules
using 5.6 and 5.8 respoectively.
http://ppm.ActiveState.com/BuildStatus/5.6.html
http://ppm.ActiveState.com/BuildStatus/5.8.html
Warning: They are big,
I have just used Devel::Cover successfully for the first time.
I even got the HTML pages.
Great!
But what are those numbers and colors in the columns ?
I could not find in the documentation. Please point me to the
description if it is available somewhere.
thanks
Gabor
On Sat, 4 Oct 2003 [EMAIL PROTECTED] wrote:
> On Sat, Oct 04, 2003 at 11:00:33PM +0200, Gabor Szabo wrote:
> > But what are those numbers and colors in the columns ?
> > I could not find in the documentation. Please point me to the
> > description if it is available somewhe
On Sat, 4 Oct 2003, Paul Johnson wrote:
> The colours are just eye candy, they map to the numbers. The idea being
> that the red stuff is what you want to look at first.
>
> I suspect that you are right, and this is probably not documented
> anywhere.
Thanks for the answer !
Another question
I was under the impression (I think I read it somewhere) that when
running "make test" if there is a test.pl file and a set of tests
in t/*.t only the former (test.pl) will run an the t/ directory
will be skipped.
I have just checked it and it seems to be not true.
That is, both test.pl and t/*.
The HTML files generated by Devel::Cover are huge.
I ran coverage on HTML::Template and while the source code
is ~100K the HTML report is 2.5Mb
So I think some work should be done to reduce this size.
I made a simple change - removing leading spaces from the
templates - this reduced the file size
On Tue, 11 Nov 2003, Michael Carman wrote:
> old format 2192 kB
> new format (default)326 kB
> new format w/ -option=pod,data 391 kB
> new format w/ -option=unified 340 kB
> new format w/ -option=pod,data,unifi
Hi,
in a code I am writing right now http://yapcom.pti.co.il/
I used to croak from functions deep down.
When testing for such errors I used code like this in my
test script:
eval {
f(); # will croak
};
like($@, qr/Bad thing happened/, 'successfully tested bad thing');
Now I am trying
On Fri, 28 Nov 2003, Rafael Garcia-Suarez wrote:
> Andy Lester wrote:
> >
> > > How am I going to test this ?
> >
> > Take a look at Test::Warn for warnings, and Test::Exception for errors.
> >
> > I think qa.perl.org needs a listing of Test::* modules so that people
> > know what's available.
>
>
If this is OT, please point me to some better place to find an answer.
I am looking for a way to functional and load test a web site.
On the functional level:
Basic things can be achieved by WWW::Mechanize but I don't know yet how
to deal with Javascript in the response page.
On the load test:
On Mon, 19 Jan 2004, Abe Timmerman wrote:
> If you're interested in that, I can send you a pre-alpha version, although I
> haven't got the time to work on it right now...
Yes, please send it over.
BTW One of the specific things I will have to automate is
OWA - Outlook Web Access which is said t
On Mon, 19 Jan 2004, Adrian Howard wrote:
>
> On Monday, January 19, 2004, at 06:10 pm, Gabor Szabo wrote:
>
> > If this is OT, please point me to some better place to find an answer.
> [snip]
>
> Not OT in my opinion, but you also might want to try
> ht
On Mon, 19 Jan 2004, Ed Summers wrote:
> If you are testing from the cmd line
One of the prime problems of my customers is the fact that I don't give
them a nice GUI for the test tool where they can click.
> the nice thing about Perl's testing
> framework is that it would be feasible to write C#
On 5/14/07, John Macdonald <[EMAIL PROTECTED]> wrote:
Removing the sigil
on a function call (it used to always be written &sub(args...))
did, I think, lead to the difficulty in perl5 where it became
difficult to add new keyword operators to the language - because
they could conflict with subrout
I am experimenting a bit with the compilation of Parrot
perl Configure.pl --gc=malloc-trace
make
stopped with:
src/malloc.c:4719: warning: function call has aggregate value
make: *** [src/malloc-trace.o] Error 1
below is the stderr
Gabor
print_newline 1211 experimental, no
On 8/30/07, chromatic <[EMAIL PROTECTED]> wrote:
>
> What's your platform? Which compiler are you using?
sorry. this was my third attempt to post this report. I might have forgotten
to include this information:
gcc --version
gcc (GCC) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)
uname -a
Linux notebook 2.6.20
gcc --version
gcc (GCC) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)
perl Configure.pl --gc=malloc
make
this is the STDERR:
[...]
newpdd15class_p_s 1254 experimental, not in ops.num
newpdd15class_p_sc1255 experimental, not in ops.num
newpdd15class_p_p 1256 experimenta
It has biten me so let's make sure invalid --gc options are not allowed.
Index: lib/Parrot/Configure/Options.pm
===
--- lib/Parrot/Configure/Options.pm (revision 20963)
+++ lib/Parrot/Configure/Options.pm (working copy)
@@ -4
> David Fetter <[EMAIL PROTECTED]> http://fetter.org/
> phone: +1 415 235 3778AIM: dfetter666
> Skype: davidfetter
>
> Remember to vote!
> Consider donating to PostgreSQL: http://www.postgresql.org/about/donate
>
--
Gabor Szabo
http://www.szabgab.com/
I meant to send it to the list actually.
It seems the beer from YAPC::EU still have not fully settled down..
> On Sep 1, 2007, at 12:35 PM, Gabor Szabo wrote:
>
> > Thanks for the pointers, I was not sure where to add this.
> >
> > On 9/1/07, James E Keenan <[EMAIL PRO
Index: config/auto/gc.pm
===
--- config/auto/gc.pm (revision 20963)
+++ config/auto/gc.pm (working copy)
@@ -107,7 +107,7 @@
gc_flag => '-DGC_IS_MALLOC',
);
}
-else {
+elsif ( $gc eq 'gc' ) {
On 9/3/07, Andy Dougherty <[EMAIL PROTECTED]> wrote:
> On Sat, 1 Sep 2007, Gabor Szabo wrote:
>
> > It has biten me so let's make sure invalid --gc options are not allowed.
>
> But what if I want to work on --gc=libc? How can I override this?
I am not sure I unders
Can someone explain, please why are there tests that need a version
control system? It sounds strange to me.
Gabor
On 9/3/07, via RT Paul Cochrane <[EMAIL PROTECTED]> wrote:
> # New Ticket Created by Paul Cochrane
> # Please include the string: [perl #45137]
> # in the subject line of all futu
I am not sure what to quote so let me reply on a clean page.
I would like to see invalid configuration options and values as being always
fatal. They indicate some kind of user error, a typo or similar that would
probably cause trouble to the Parrot developer as well as the Parrot user.
In order
it ASAP so we'll see how many
international guests to expect.
regards
Gabor
--
Gabor Szabo
http://www.szabgab.com/
On Dec 29, 2007 4:56 PM, Mark J. Reed <[EMAIL PROTECTED]> wrote:
> .cgi? Is that really a CGI-based implementation? Because that seems
> a little, I don't know, backward-looking. Maybe it's just me, but it
> seems like it will just feed the all-too-common perception that Perl
> is for CGI script
ROTECTED]> wrote:
> On Wednesday 22 October 2008 23:23:46 Gabor Szabo wrote:
>
>> I am totally lack of relevant knowledge so I'd like to get some from you.
>>
>> There are many mobile platforms out there.
>> Linux based, Symbian, Blackberry, iPhone, Windows, Pa
Hi,
as this is relevant to you as well, let me send this announcement here too.
Yesterday we have released v0.22 of Padre the Perl IDE written in Perl 5.
http://padre.perlide.org/
There are many changes as usual but the two important ones for the Parrot/Perl 6
developers are related mostly to tw
apparently this is a feature of Test.pm
though I think a very bad one
Gabor
On Wed, Feb 4, 2009 at 9:00 PM, perl6 via RT
wrote:
> Greetings,
>
> This message has been automatically generated in response to the
> creation of a trouble ticket regarding:
>"Test.pm eats the "Use of uninitiali
As an experiment to check how we could reuse CPAN to distribute Perl 6 packages
I uploaded Perl6::Conf
The code itself is not interesting, my main interest is the "distribution".
One of the issues I encountered is the display on the two search engines:
http://search.cpan.org/dist/Perl6-Conf/
http
Hi Lars,
let me add to what Carl wrote that think the blogs of Moritz Lenz
are quite good http://perlgeek.de/blog-en/perl-5-to-6/ but admittedly they
are for Perl 5 programmers.
I also started to write an publish my Perl 6 training slides.
It is very early and basic but you are welcome to fetch t
On Jan 3, 2008 6:36 PM, Larry Wall <[EMAIL PROTECTED]> wrote:
> On Wed, Jan 02, 2008 at 11:28:54AM -0800, Jonathan Lang wrote:
> : Paul Hodges wrote:
> : > http://perl6.org/doc/design/syn/S02.html still says:
> : > "Intra-line comments will not be supported in standard Perl"
> Note that the docum
On Jan 10, 2008 12:23 PM, Allison Randal <[EMAIL PROTECTED]> wrote:
> Aye, I would want to improve on the Python solution. But maintaining a
> config file something like:
>
> [darwin]
> t/pmc/foo.t 3 5-7 9 # platform doesn't support libfoo
> t/pmc/bar.t 1 42
> ...
>
> [MSWin32]
> t/pmc/foo.t 32
>
00 USD once a year.
How hard would it be to enable (Paypal?) recurring monthly payments to TPF?
How hard would it be to allow people to target their money to a
specific project/person?
TPF can then still focus on raising money from corporations.
Gabor
--
Gabor Szabo
http://www.szabgab.com/
So I wanted to build Rakudo, but I could not find the instructions in
the Parrot source code
and the links on the rakudo.org site all return 500 error...
Gabor
On Mon, Mar 3, 2008 at 11:24 PM, jerry gay <[EMAIL PROTECTED]> wrote:
>
> On Mon, Mar 3, 2008 at 1:17 PM, Gabor Szabo <[EMAIL PROTECTED]> wrote:
> > So I wanted to build Rakudo, but I could not find the instructions in
> > the Parrot source code
> > and
Has anything happened in response to this discussion?
Gabor
Hi,
If system() is now called run()
What replaces backtick or qx{} ?
Gabor
On Thu, Mar 19, 2009 at 1:18 AM, Moritz Lenz wrote:
> Gabor Szabo (via RT) wrote:
>> # New Ticket Created by Gabor Szabo
>> # Please include the string: [perl #63970]
>> # in the subject line of all future correspondence about this issue.
>> # http://rt.perl.org/rt3/T
Hi,
On Mon, Apr 13, 2009 at 11:56 PM, Patrick R. Michaud wrote:
> As some of you are aware, this week is the Nordic Perl Workshop [1],
> and in the days immediately following the workshop we will have
> the Oslo Perl 6 Hackathon [2]. During the first day of the hackathon
> Gabor S
On Sun, Apr 26, 2009 at 12:14 AM, Ahmad Zawawi wrote:
> Hi people,
>
> I just finished Perl6 Outline view which i promised Gabor 3 or 4
> months ago :) So you can now see Perl 6
> packages/modules/grammars/roles in parent nodes and under them you can
> see methods/submethods/subroutines/rules/toke
On Mon, Aug 10, 2009 at 2:02 AM, Patrick R. Michaud wrote:
> On Sun, Aug 09, 2009 at 04:35:42PM -0600, David Green wrote:
>> On 2009-Aug-9, at 3:57 pm, Tim Bunce wrote:
>>> Perhaps it's worth asking what we might call the release after that
>>> one.
>>> "Rakudo not-quite-so-lite"?
>>
>> Rakudo ** (
2009/12/6 Víctor A. Rodríguez (Bit-Man) :
> Hi perlsixers,
>
> we've been working a bit on Perl 6 lately [1] and some work, even the
> basic coding, would be great if we use some IDE.
> I'm a regular Eclipse user and EPIC seems the natural choice for me,
> but it doesn't support Perl 6 (yet). Also
2009/12/7 Gabor Szabo :
> 2009/12/6 Víctor A. Rodríguez (Bit-Man) :
>> Hi perlsixers,
>>
>> we've been working a bit on Perl 6 lately [1] and some work, even the
>> basic coding, would be great if we use some IDE.
>> I'm a regular Eclipse user and EPIC
Hi,
Let me announce version 0.02 of the XL Perl 5 distribution (temporary
name, I hope :-)
for Linux that contains a full version of Perl 5.10.1, Padre 0.51 and
the Perl 6 plugin of Padre.
This is still very experimental of course.
You can download it from here:
http://perlide.org/download/bina
On Wed, Dec 9, 2009 at 2:18 PM, Richard Hainsworth wrote:
> Gabor,
>
> Thanx this is a good step forward.
>
> With simple files, no problem. I tried a larger file and got the following
> in the terminal window:
>
> ./perl-5.10.1-xl-0.02/perl/bin/padre.sh
> Thread 1 terminated abnormally: Undefined
Android already supports various languages. I think it would be cool
to see Parrot being supported there which will allow running
Perl 6 code on Android.
I took the liberty and submitted a request.
http://code.google.com/p/android-scripting/issues/detail?id=296
Please visit the request page and
On Wed, Jun 23, 2010 at 1:34 AM, SundaraRaman R
wrote:
> Hi,
>
> This is an idea that originated in #perl6 during a discussion with slavik (
> http://irclog.perlgeek.de/perl6/2010-01-17#i_1907093). The goal is to allow
> Perl 6 source code to be written in natural languages other than English.
> T
Congratulations and thank you!
I have started to collect the links to the press coverage of the release:
http://www.perlfoundation.org/perl6/index.cgi?rakudo_star_press
Please help me collect all the important links!
Gabor
Hi,
I just tried to use the .dmg version of Rakudo Star.
I might not be the typical Mac user as I spent quite some time trying to figure
out what do I need to do in order to start using it after the installation.
In the end I found that it was installed to /Applications/Rakudo
Then I added thes
1 - 100 of 294 matches
Mail list logo