Re: multiple languages clarification - newbie

2004-09-13 Thread Dan Sugalski
At 9:00 AM -0600 9/13/04, Thomas Fjellstrom wrote: On September 13, 2004 07:52 am, Dan Sugalski wrote: At 3:31 AM -0600 9/11/04, Thomas Fjellstrom wrote: >On September 8, 2004 04:34 pm, Dan Sugalski wrote: >> At 11:02 PM +0100 9/8/04, Richard Jolly wrote: >> >Hi, >> > >> > >> > >> >Ca

Re: multiple languages clarification - newbie

2004-09-13 Thread Thomas Fjellstrom
On September 13, 2004 07:52 am, Dan Sugalski wrote: > At 3:31 AM -0600 9/11/04, Thomas Fjellstrom wrote: > >On September 8, 2004 04:34 pm, Dan Sugalski wrote: > >> At 11:02 PM +0100 9/8/04, Richard Jolly wrote: > >> >Hi, > >> > > >> > > >> > > >> >Can someone provide clarification on what mix

Re: multiple languages clarification - newbie

2004-09-13 Thread Dan Sugalski
At 3:31 AM -0600 9/11/04, Thomas Fjellstrom wrote: On September 8, 2004 04:34 pm, Dan Sugalski wrote: At 11:02 PM +0100 9/8/04, Richard Jolly wrote: >Hi, > > > >Can someone provide clarification on what mixing languages will look >like in practice, or point me to where its explained? It's n

Re: multiple languages clarification - newbie

2004-09-11 Thread Thomas Fjellstrom
On September 8, 2004 04:34 pm, Dan Sugalski wrote: > At 11:02 PM +0100 9/8/04, Richard Jolly wrote: > >Hi, > > > > > > > >Can someone provide clarification on what mixing languages will look > >like in practice, or point me to where its explained? > > It's not explained anywhere. Besides, it's synt

Re: multiple languages clarification - newbie

2004-09-09 Thread mAsterdam
Joseph Ryan wrote: macro prolog is parsed(m:w/ \: ([ <[^p]>+ :: | p ]+) prolog \. ; /) { eval($_, "prolog"); } But, this is perl6-language stuff anyways. (: Ah yes. Sorry. I try to read both whenever I have some time. I did not che

Re: multiple languages clarification - newbie

2004-09-09 Thread Aaron Sherman
On Wed, 2004-09-08 at 18:02, Richard Jolly wrote: > Can you really do this: > > #!/usr/bin/perl6 > use __Python::sys;# whatever syntax > sys.stdout.write( 'hi there');# perl6 syntax matches python syntax There's some confusion in the responses between syntax merging (not app

Re: multiple languages clarification - newbie

2004-09-08 Thread JOSEPH RYAN
- Original Message - From: JOSEPH RYAN <[EMAIL PROTECTED]> Date: Wednesday, September 8, 2004 8:58 pm Subject: Re: multiple languages clarification - newbie >macro prolog is parsed(/ > \: ([ > <[^p]>+ :: > | p >

Re: multiple languages clarification - newbie

2004-09-08 Thread JOSEPH RYAN
- Original Message - From: mAsterdam <[EMAIL PROTECTED]> Date: Wednesday, September 8, 2004 8:31 pm Subject: Re: multiple languages clarification - newbie > Joseph Ryan wrote: > > >>Can someone provide clarification on what mixing languages will > >>look li

Re: multiple languages clarification - newbie

2004-09-08 Thread mAsterdam
Joseph Ryan wrote: Can someone provide clarification on what mixing languages will look like in practice, or point me to where its explained? Warning. This is perl 7 and a half: #!/usr/bin/perl -w use prolog; prolog: # prolog tells us: needs_support_of(Db, Da):- designer(A, Da), des

Re: multiple languages clarification - newbie

2004-09-08 Thread JOSEPH RYAN
- Original Message - From: Richard Jolly <[EMAIL PROTECTED]> Date: Wednesday, September 8, 2004 6:02 pm Subject: multiple languages clarification - newbie > Hi, > > > > Can someone provide clarification on what mixing languages will > look > like in practic

Re: multiple languages clarification - newbie

2004-09-08 Thread Dan Sugalski
At 11:02 PM +0100 9/8/04, Richard Jolly wrote: Hi, Can someone provide clarification on what mixing languages will look like in practice, or point me to where its explained? It's not explained anywhere. Besides, it's syntax, and we don't do syntax. :) It'll likely be something like: #! /usr/bin

multiple languages clarification - newbie

2004-09-08 Thread Richard Jolly
Hi, Can someone provide clarification on what mixing languages will look like in practice, or point me to where its explained? Can you really do this: #!/usr/bin/perl6 use __Python::sys;# whatever syntax sys.stdout.write( 'hi there');# perl6 syntax matches python syntax here