ror if the stream has ended.
> >
> > Command:
> > perl6 -ne 'get' <<< $'hello\nworld\ntest'
> >
> > Result:
> > world
> > Nil
> > readline requires an object with REPR MVMOSHandle
> > in block at -e line 1
> >
>
On Thu, 10 Aug 2017 06:37:58 -0700, szab...@gmail.com wrote:
> However a more common case is the frequent language switching. I keep
> typing Python constructs in Perl and Perl constructs in Python. Not to
> mention Perl 5 vs 6 constructs. And JavaScript too.
This is really a double-edged sword. W
On Thu, 10 Aug 2017 06:37:58 -0700, szab...@gmail.com wrote:
> However a more common case is the frequent language switching. I keep
> typing Python constructs in Perl and Perl constructs in Python. Not to
> mention Perl 5 vs 6 constructs. And JavaScript too.
This is really a double-edged sword. W
On Thu, Aug 10, 2017 at 3:59 PM, Zoffix Znet via RT
wrote:
> On Thu, 10 Aug 2017 02:09:30 -0700, szab...@gmail.com wrote:
>> In Python one can pass a string to the exit() function
>> Would it be possible to special case
>
> Not really keen on adding special cases to support programming-by-guessing
On Thu, Aug 10, 2017 at 3:59 PM, Zoffix Znet via RT
wrote:
> On Thu, 10 Aug 2017 02:09:30 -0700, szab...@gmail.com wrote:
>> In Python one can pass a string to the exit() function
>> Would it be possible to special case
>
> Not really keen on adding special cases to support programming-by-guessing
On Thu, 10 Aug 2017 02:09:30 -0700, szab...@gmail.com wrote:
> In Python one can pass a string to the exit() function
> Would it be possible to special case
Not really keen on adding special cases to support programming-by-guessing
instead of reading the documentation.
However, it's worth noting
On Thu, 10 Aug 2017 02:09:30 -0700, szab...@gmail.com wrote:
> In Python one can pass a string to the exit() function
> Would it be possible to special case
Not really keen on adding special cases to support programming-by-guessing
instead of reading the documentation.
However, it's worth noting
ction that will be
> > displayed and the program exited.
> >
> >
> > In Perl 6 I get:
> >
> > $ perl6
> > To exit type 'exit' or '^D'
> > > exit("hello")
> > Cannot convert string to number: base-10 number must be
ction that will be
> > displayed and the program exited.
> >
> >
> > In Perl 6 I get:
> >
> > $ perl6
> > To exit type 'exit' or '^D'
> > > exit("hello")
> > Cannot convert string to number: base-10 number must be
> $ perl6
> To exit type 'exit' or '^D'
> > exit("hello")
> Cannot convert string to number: base-10 number must begin with valid
> digits or '.' in '⏏hello' (indicated by ⏏)
> in block at line 1
>
> Would it be possib
> Would it be possible to special case when someone passes a string to
> exit and give a better error message telling how to write that?
Maybe the error message should indicate what types are allowed.
> Better yet, could exit accept a string?
That would be equivalent to `print("
Would it be possible to special case when someone passes a string to
exit and give a better error message telling how to write that?
Maybe the error message should indicate what types are allowed.
Better yet, could exit accept a string?
That would be equivalent to `print("hello&quo
the program exited.
In Perl 6 I get:
$ perl6
To exit type 'exit' or '^D'
> exit("hello")
Cannot convert string to number: base-10 number must begin with valid
digits or '.' in '⏏hello' (indicated by ⏏)
in block at line 1
Would it be possible
On Thu, 25 May 2017 05:58:39 -0700, alex.jakime...@gmail.com wrote:
> Code:
> say ‘hello’.
> say 42
>
> Result:
> ===SORRY!=== Error while compiling -e
> Two terms in a row
> at -e:2
> --> say⏏ 42
> expecting any of:
> infix
>
On Thu, 25 May 2017 05:58:39 -0700, alex.jakime...@gmail.com wrote:
> Code:
> say ‘hello’.
> say 42
>
> Result:
> ===SORRY!=== Error while compiling -e
> Two terms in a row
> at -e:2
> --> say⏏ 42
> expecting any of:
> infix
>
On Thu, May 25, 2017 at 8:58 AM, Aleks-Daniel Jakimenko-Aleksejev <
perl6-bugs-follo...@perl.org> wrote:
> Arguably, it can probably figure out that . was used instead of ;. The
> problem is that . is interpreted as an infix, and therefore it only blows
> up when it sees the next occurrence of two
My apologies for accidental top-posting; I forgot to uncheck the
"include quoted" box.
is issue.
> # https://rt.perl.org/Ticket/Display.html?id=131363 >
>
>
> Code:
> say ‘hello’.
> say 42
>
> Result:
> ===SORRY!=== Error while compiling -e
> Two terms in a row
> at -e:2
> --> say⏏ 42
> expecting any of:
> infi
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #131363]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131363 >
Code:
say ‘hello’.
say 42
Result:
===SORRY!=== Error wh
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #131360]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131360 >
Code:
say hello world’
Result:
===SORRY!=== Error while compil
On Mon, May 8, 2017 at 4:49 PM, Joachim Durchholz wrote:
> If the mental model for Perl6 strings is "array of characters" though
Perl has never had that mental model, is my point. It's generally imported
by folks who come from languages where strings *are* "arrays of characters"
--- and where t
Am 08.05.2017 um 20:59 schrieb Brandon Allbery:
On Mon, May 8, 2017 at 2:52 PM, Aleks-Daniel Jakimenko-Aleksejev via RT
mailto:perl6-bugs-follo...@perl.org>> wrote:
Usually I'm against all perl5 error messages
This is a Pythonism (and C and other such languages).
Which doesn't mean that
Yes, but I was trying to address this part: “Just recall how often the
Perl-5-ism exceptions get thrown when writing normal Perl 6 code”
The idea, I guess, is that the proposed error message has the same level of
annoyingness as perl5-related error messages.
On Mon, May 8, 2017 at 9:59 PM, Brando
On Mon, May 8, 2017 at 2:52 PM, Aleks-Daniel Jakimenko-Aleksejev via RT <
perl6-bugs-follo...@perl.org> wrote:
> Usually I'm against all perl5 error messages
This is a Pythonism (and C and other such languages). Older Perl has the
same behavior that you can't index a string that way, but must us
」. That is, if somebody attempts to index a string
literal, then we know for sure that it is wrong (… or at least, the error
message will do more good than harm).
On 2017-05-08 09:26:53, c...@zoffix.com wrote:
> On Mon, 10 Oct 2016 06:05:10 -0700, alex.jakime...@gmail.com wrote:
> > Code
On Mon, 10 Oct 2016 06:05:10 -0700, alex.jakime...@gmail.com wrote:
> Code:
> say “hello”[2]
>
> Result:
> Index out of range. Is: 2, should be in 0..0
> in block at -e line 1
>
> Actually thrown at:
> in block at -e line 1
>
>
>
>
On Mon, 10 Oct 2016 06:05:10 -0700, alex.jakime...@gmail.com wrote:
> Code:
> say “hello”[2]
>
> Result:
> Index out of range. Is: 2, should be in 0..0
> in block at -e line 1
>
> Actually thrown at:
> in block at -e line 1
>
>
>
>
On Sun, 01 May 2016 04:12:34 -0700, alex.jakime...@gmail.com wrote:
> This bug report is somewhat related to
> https://rt.perl.org/Ticket/Display.html?id=128046
>
> get() crashes with a weird error if the stream has ended.
>
> Command:
> perl6 -ne 'get' <&l
(1) { 42 }; say $x[^10]
Result:
(42 42 42 42 42 42 42 42 42 42)
And now look at this:
Code:
my $x = do while (1) { LAST { say ‘hello’ }; }
Result:
hello
And this:
Code:
my $x = do while (1) { LAST { say ‘hello’ } }; say $x[^10]
Result:
hello
No such method '!capture_phasers' for inv
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #130433]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=130433 >
Code:
say ‘hello’.comb(/./).perl
Result (2016.10):
("h&q
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #129843]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129843 >
Code:
say “hello”[2]
Result:
Index out of range. Is: 2, should
> # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
> # Please include the string: [perl #128757]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=128757 >
>
>
> Code:
> say [*] ‘hello’
>
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #128757]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=128757 >
Code:
say [*] ‘hello’
Result:
hello
Code:
say [/] ‘hello’
Res
?id=128046
get() crashes with a weird error if the stream has ended.
Command:
perl6 -ne 'get' <<< $'hello\nworld\ntest'
Result:
world
Nil
readline requires an object with REPR MVMOSHandle
in block at -e line 1
But it works if the number of lines is even.
Command:
pe
It's defining what NST means; the acronym is still a thing.
On Sun, Dec 27, 2015 at 9:10 AM, James Ellis Osborne III
wrote:
> Line 1585:1587 Reads:
> --
> =head2 NST
>
> No Such Thing.
> --
>
> Surely Thi[j]s Is No Longer True?
>
> -jas
--
Will "Coke" C
Line 1585:1587 Reads:
--
=head2 NST
No Such Thing.
--
Surely Thi[j]s Is No Longer True?
-jas
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #63816]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=63816 >
rakudo: say ("hello" but False).ucfirst
my line of code seems
HAI!
I have just built Parrot and perl6 and am just getting started.
Jeremiah
Jeremiah (>):
> OHAI!
>
> I have just built Parrot and perl6 and am just getting started. I'm gonna
> lurk a little. :)
Welcome! Enjoy Perl 6, and let us know if you need clarification or
think you've found a bug. There's plenty of people here (and on #perl6
at irc.freenode.net) who can help in de
OHAI!
I have just built Parrot and perl6 and am just getting started. I'm
gonna lurk a little. :)
Jeremiah
On Tuesday 05 August 2008 07:50:41 [EMAIL PROTECTED] (via RT) wrote:
> * Today I downloaded parrot-0.6.4 to my Debian PC.
> * I also installed the libicu-dev, libicu38 packages before configuration
> * cd parrot-0.6.4; perl Configure.pl; make; cd languages/perl6; make perl6
> * It seems that every
# New Ticket Created by [EMAIL PROTECTED]
# Please include the string: [perl #57626]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=57626 >
* Today I downloaded parrot-0.6.4 to my Debian PC.
* I also installed the libicu-de
On Sun Mar 30 17:13:30 2008, [EMAIL PROTECTED] wrote:
>
> Let me see if I can get the original tester to post an update.
>
No luck on this. Closing this ticket. If the issue pops up again
elsewhere, we'll open a new ticket.
;
> > On the same Win32 box mentioned in RT 52198, the developer attempted
> > to build Rakudo, but 'say "Hello world"' was unsuccessful. Can
> >
> anyone help diagnose the problem? See attached log.
>
> > .\perl6bool.c(192) : warning C4716:
ild Rakudo, but 'say "Hello world"' was unsuccessful. Can
> anyone help diagnose the problem? See attached log.
> .\perl6bool.c(192) : warning C4716: 'Parrot_Perl6Bool_ro_pop_float' : must
> return a value .\perl6bool.c(198)
That's awfully weird.
udo buildfest held at Toronto Perlmongers on March 27, 2008.
On the same Win32 box mentioned in RT 52198, the developer attempted
to build Rakudo, but 'say "Hello world"' was unsuccessful. Can
anyone help diagnose the problem? See attached log.
Thank you very much.
kid5
Audrey Tang wrote:
>
> 在 Dec 18, 2006 5:52 AM 時,Fayland Lam 寫到:
>
>> we are trying to translate them into Chinese. so I just wonder where
>> can I get the .pod source?
>
> http://svn.perl.org/perl6/doc/trunk/design/syn/
Thanks.
>
> Cheers,
> Audrey
>
>
在 Dec 18, 2006 5:52 AM 時,Fayland Lam 寫到:
we are trying to translate them into Chinese. so I just wonder
where can I get the .pod source?
http://svn.perl.org/perl6/doc/trunk/design/syn/
Cheers,
Audrey
we are trying to translate them into Chinese. so I just wonder where can
I get the .pod source?
Thanks.
On Sun, 21 May 2006, James Peregrino wrote:
> You folks took me too literally :) I meant: Given a system without
> pugs/parrot/haskell (I assume perl5 is required), what are the things you
> need to install so that you can say
>
> perl6 -e "say 'hello world'&quo
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 subversion and ghc6 for all
users ...
[snip]
# To compile Parrot
svn co https://svn.perl.org
> "James Peregrino" <[EMAIL PROTECTED]> writes:
> > You folks took me too literally :) I meant: Given a system without
> > pugs/parrot/haskell (I assume perl5 is required), what are the
> > things you need to install
>
> I just translated my german "Pugs First Blood" notes about how to
> compile P
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 subversion and ghc6 for all
users .
/pugs
perl Makefile.PL
make
I have not "installed" it anywhere
# Now I can use it
./pugs -e 'say "Hello world"'
Gabor
"James Peregrino" <[EMAIL PROTECTED]> writes:
> You folks took me too literally :) I meant: Given a system without
> pugs/parrot/haskell (I assume perl5 is required), what are the
> things you need to install
I just translated my german "Pugs First Blood" notes about how to
compile Pugs.
Try one
literally :) I meant: Given a system without
pugs/parrot/haskell (I assume perl5 is required), what are the things you
need to install so that you can say
perl6 -e "say 'hello world'"
i.e.
tar xf ghc.tar.gz
./configure
make
make install
tar xf parrot.tar.gz
make
make test
m
You folks took me too literally :) I meant: Given a system without
pugs/parrot/haskell (I assume perl5 is required), what are the things you
need to install so that you can say
perl6 -e "say 'hello world'"
i.e.
tar xf ghc.tar.gz
./configure
make
make install
tar xf par
Hi James,
On 5/20/06, James Peregrino wrote:
Is any document yet that gets you to the point of running a perl6 'hello
world'?
I believe it's as simple as "Hello world!".say. Look to
http://svn.openfoundry.org/pugs/docs/ or
http://svn.openfoundry.org/pugs/examples for more stuff.
David
Is any document yet that gets you to the point of running a perl6 'hello
world'?
-james
he info is also covered by the debug PBC segment.
In r9546 I have removed interp->imc_info->output, interp->current_file
and usage of REG_STR(0). The output info in now in interp->output_file.
Currently this is a plain 'const char *', but I could switch it to a
'STRING *
On Oct 22, 2005, at 21:02, Bernhard Schmalhofer via RT wrote:
Using registers for passing command line options to a specific runcore
seem hazardous to me. Especially as a 'char *' is put where a 'STRING
*'
is expected.
Yep. This has always been a hack to pass the outfile along.
As Parrot_
I propose a quick fix.
i. Do not use STRING register for passing options
ii. Move interp->imc_info->output to interp->output_file and use
interp->output_file for all uses of the 'output' option.
Any comments?
> Whem copying 'exec_output.o' to 'examples/pas
> [EMAIL PROTECTED] - Di 18. Okt 2005, 02:51:18]:
>
> This bug is a regression, 'make hello' works with release 0.3.0
> (r9297).
Just some observations. When running 'make test' the command
./parrot -o examples/pasm/hello.o examples/pasm/hello.pbc
fails
At 07:03 17/10/2005 -0700, you wrote:
"François PERRAD (via RT)" <[EMAIL PROTECTED]> wrote:
>
> $ ./parrot -V
> This is parrot version 0.3.0-devel (r9493) built for i386-linux.
>
> $ make hello
> ./parrot -o examples/assembly/hello.o examples/assembly/hello
"François PERRAD (via RT)" <[EMAIL PROTECTED]> wrote:
$ ./parrot -V
This is parrot version 0.3.0-devel (r9493) built for i386-linux.
$ make hello
./parrot -o examples/assembly/hello.o examples/assembly/hello.pbc
make EXEC=examples/assembly/hello exec
c++ -o examples/assem
nux.
$ make hello
./parrot -o examples/assembly/hello.o examples/assembly/hello.pbc
make EXEC=examples/assembly/hello exec
c++ -o examples/assembly/hello -L/usr/local/lib
-Wl,-E examples/assembly/hello.o src/exec_start.o src/parrot_config.o
blib/lib/libparrot.a -lpthread -lm -L/usr/lib -lic
aN, albeit with different exception information
: hidden inside. Num is "not yet defined", whereas NaN is "tried to
: convert 'hello' to number at inflate line 2" or some such.
I forgot to point out that you naturally lose that extra exception
information when you store
On Sun, Aug 14, 2005 at 03:48:22PM +0200, Daniel Brockman wrote:
: Exegesis 3 contains this snippet,
:
:my $inflation;
:print "Inflation rate: " and $inflation = +<>
:until $inflation != NaN;
:
: but the rule that +"hello" evaluates to NaN is &quo
Exegesis 3 contains this snippet,
my $inflation;
print "Inflation rate: " and $inflation = +<>
until $inflation != NaN;
but the rule that +"hello" evaluates to NaN is "no longer"
mentioned in S03, according to Autrijus.
He suggested I post here t
GlennH wrote:
Hello folks,
I read about the Phalanx project on the yahoo Agile Testing group and
thought I'd sign up the mailing list and skulk in the background.
Don't just skulk. Enlist!
http://qa.perl.org/phalanx/
http://phalanx.kwiki.org/
jimk
François" PERRAD <[EMAIL PROTECTED]> wrote:
> Since r8195, PARROT_DEBUG_FLAG is not defined in parrot/interpreter.h
> So, make hello fails when compiling src/exec_start.c
Ah, yep. I've changed it to follow the code of src/embed.c.
Thanks for testing.
> PARROT_DEBUG_F
ake hello fails when compiling src/exec_start.c
PARROT_DEBUG_FLAG is also referenced in several files.
Francois Perrad.
hello.patch
Description: Binary data
On Sat, Mar 26, 2005 at 04:44:52PM +0100, Leopold Toetsch wrote:
> I had a look at the generated mandel.imc. Remarkable, how compact
> Parrot.hs is and what it already does.
Thanks. One of my remaining large TODOs before Pugs 6.2.0 is to
recode the evaluators in Template Haskell as Compile/Haskel
Autrijus Tang <[EMAIL PROTECTED]> wrote:
> As of Pugs revision 1024, this works:
> % pugscc --runparrot -e "'Hello, Parrot'.say"
I had a look at the generated mandel.imc. Remarkable, how compact
Parrot.hs is and what it already does.
Some remarks:
1) s__z =
Autrijus Tang <[EMAIL PROTECTED]> wrote:
> As of Pugs revision 1024, this works:
> % pugscc --runparrot -e "'Hello, Parrot'.say"
Wow. And with rev 2^10 :)
> ... Parrot is
> really much, much saner than I had hoped; it eeriely supports lots of
> th
(Cc'ing this post to p6i and p6l, as this is likely to concern folks
from all three mailing lists.)
As of Pugs revision 1024, this works:
% pugscc --runparrot -e "'Hello, Parrot'.say"
And yes, it does what you think it does. Pugs takes that Perl 6 source
code, pro
works:
>
> % pugscc --runparrot -e "'Hello, Parrot'.say"
How appropriate a revision number
I must say that pugs continues to out-strip every expectation I've had.
Bravo!
> Tomorrow I'll hack some more to get mandel.p6 working correctly on the
> t
(Cc'ing this post to p6i and p6l, as this is likely to concern folks
from all three mailing lists.)
As of Pugs revision 1024, this works:
% pugscc --runparrot -e "'Hello, Parrot'.say"
And yes, it does what you think it does. Pugs takes that Perl 6 source
code, pro
On Wed, Mar 16, 2005 at 06:44:47PM +0100, Thomas Sandlaß wrote:
: Markus Laire wrote:
: >What should index("Hello", "", 999) return in perl6?
:
: Since the first thing that needs definition is how does
: the empty string match, it could be e.g. any(0.."Hello".elem
Markus Laire wrote:
What should index("Hello", "", 999) return in perl6?
Since the first thing that needs definition is how does
the empty string match, it could be e.g. any(0.."Hello".elems).
As described in A12 string positions are much more these days
than
On Wed, Mar 16, 2005 at 05:31:17PM +0200, Markus Laire wrote:
: What should index("Hello", "", 999) return in perl6?
:
: In perl5 that returns 5, but IMHO -1 would be right result.
Well, neither of those is the right result, since index is probably
not going to be returnin
On Wed, 2005-03-16 at 10:31, Markus Laire wrote:
> What should index("Hello", "", 999) return in perl6?
>
> In perl5 that returns 5, but IMHO -1 would be right result.
Urk... exception?
Seriously, if you give index a position that is off the end of the
string, your
What should index("Hello", "", 999) return in perl6?
In perl5 that returns 5, but IMHO -1 would be right result.
--
Markus Laire
# New Ticket Created by Bernhard Schmalhofer
# Please include the string: [perl #34073]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/rt3/Ticket/Display.html?id=34073 >
Hi,
this patch repairs the creation of executables from Parrot bytecode files.
On 1 Feb 2005, at 16:30, Shaun Fryer wrote:
[snip]
Hello!
Hello right back at ya :-)
Adrian
I just skimmed the perl.com article about Phalanx,
http://www.perl.com/pub/a/2005/01/13/phalanx.html
and this project looks to be right up my alley.
Anyhow, I've got a bit more reading to do on the
project before setting out to make a contribution,
but I figured I'd say a brief "
On 21 Jan 2005, at 17:09, Andy Lester wrote:
On Fri, Jan 21, 2005 at 05:00:09PM +, GlennH ([EMAIL PROTECTED])
wrote:
I read about the Phalanx project on the yahoo Agile Testing group and
thought I'd sign up the mailing list and skulk in the background.
I'm a
Do you have a mention of what was
On Fri, Jan 21, 2005 at 05:00:09PM +, GlennH ([EMAIL PROTECTED]) wrote:
> I read about the Phalanx project on the yahoo Agile Testing group and
> thought I'd sign up the mailing list and skulk in the background. I'm a
Do you have a mention of what was posted? I'm curious what was said.
On Fri, Jan 21, 2005 at 05:00:09PM +, GlennH ([EMAIL PROTECTED]) wrote:
> I read about the Phalanx project on the yahoo Agile Testing group and
Welcome to the group. You can also go add your name and address to the
HereToHelp page on the Kiwki.
xoxo,
Andy
--
Andy Lester => [EMAIL PROTECTE
Hello folks,
I read about the Phalanx project on the yahoo Agile Testing group and
thought I'd sign up the mailing list and skulk in the background. I'm a
test automation man, mainly using Tcl for testing telecoms data
acquisition systems - dabbling with a bit of C from time to t
At 8:37 AM +0200 9/24/04, Christian Aperghis-Tramoni wrote:
I am the french teacher who is trying to initiate my students to the
pleaasure of assembly language using Parrot.
For those who car read french, you can check our site :
http://www.dil.univ-mrs.fr/lic.ue.html#L-O3-5
I can't read french,
Christian Aperghis-Tramoni <[EMAIL PROTECTED]> wrote:
> I am the french teacher who is trying to initiate my students to the
> pleaasure of assembly language using Parrot.
Great. Thanks for the note.
leo
I am the french teacher who is trying to initiate my students to the
pleaasure of assembly language using Parrot.
For those who car read french, you can check our site :
http://www.dil.univ-mrs.fr/lic.ue.html#L-O3-5
I am trying to write a french document for my students, but the most
important p
Jens Rieks <[EMAIL PROTECTED]> wrote:
> Hi,
> this time a funny bug :-)
> 2. create a file hello.imc with the following content:
> .emit
> .pcc_sub @LOAD _onload:
> print "foo\n"
> end
^^^
It's called as a PCC subroutine, so you have to return from it via
"invoke P1". I wrote that
int "foo\n"
end
.eom
.sub _hello
print "blah blah string\n"
load_bytecode "hello, world!\n"
end
.end
3. run main.imc
jens
On Sun, 16 Dec 2001, Nicholas Clark wrote:
> On Wed, Dec 12, 2001 at 05:02:29PM -0500, Andy Dougherty wrote:
> >
> > cd foo && $(MAKE) && cd ..
> >
> so if submake fails, returning an exit code non-zero you don't cd .. ?
Yup. Better not fail, then.
> assuming you've got some sort of subs
On Wed, 12 Dec 2001, Andy Dougherty wrote:
> One idiom which might work is
>
> cd foo && $(MAKE)
D'oh, that's
cd foo && $(MAKE) && cd ..
(remembering the actual initial problem . . . :-)
--
Andy Dougherty [EMAIL PROTECTED]
Dept. of Physics
Lafayette Colle
--- Andy Dougherty <[EMAIL PROTECTED]> wrote:
> One idiom which might work is
>
> cd foo && $(MAKE)
>
> Since lines in makefiles are handed off to the native
> shell, this will
> be dependent upon the user's native shell. I don't know
> any details,
> but I gather the various shells in Wi
On Wed, 12 Dec 2001, Dan Sugalski wrote:
> At 10:31 AM 12/12/2001 -0500, Andy Dougherty wrote:
> >Most 'makes' do set $(MAKE), but not all of them. I seem to recall that
> >some of the SystemV-derived ones don't. (Such systems are very poorly
> >represented on p5p, let alone p6i, so reliable in
Never mind. My e-mail client stopped downloading, so I didn't know this
was already being resolved. :^)
--Brent Dax
[EMAIL PROTECTED]
Configure pumpking for Perl 6
"Nothing important happened today."
--George III of England's diary entry for 4-Jul-1776
1 - 100 of 109 matches
Mail list logo