There was some talks about hash keys autoquoting and barewords.. later are
gone and former is disambigued by forcing to write %hash{'key'} or
%hashÂkey ( as opposite to %hash{key} which is now %hash{key()} )..
right?..
that's almost ok to me, if there's any hope that  will have a _standard_
what do you think about adding C operator, akin %, to perl6 core?
I mean, as$a % $b
really does int($a) % int($b)
and returns modulous,
so $a div $b
really does int( int($a) / int($b) )
and returns integer division.
but with native int
Dan Sugalski wrote:
I checked in more of PDD 17, detailing parrot's base types. Some of
those types definitely don't exist (like, say, the string and bignum
type...) and could definitely use implementing. Should be fairly
straightforward, and would be a good way to get up to speed on writing
PM
oh my.. it seems to me, that Perl6 starts new age of ASCII-graphics. (not
ASCII, really.. maybe Uni-graphics?)..
but now i have this issue: I'm coding on Windows, there's already two
unicode compliant monospace fonts: Lucida Console and Courier New. And I
do not like both of them, (f.e. in
AT> oh my.. it seems to me, that Perl6 starts new age of ASCII-graphics. (not
AT> ASCII, really.. maybe Uni-graphics?)..
I hardly think Perl 6 should avoid any characters other than ASCII.
For example we have at least three Russian encodings and it is
acceptable only because we have no choice: we
On Sun, 20 Jun 2004 15:06:33 +0400, Andrew Shitov <[EMAIL PROTECTED]> wrote:
AT> oh my.. it seems to me, that Perl6 starts new age of ASCII-graphics.
(not
AT> ASCII, really.. maybe Uni-graphics?)..
I hardly think Perl 6 should avoid any characters other than ASCII.
For example we have at least t
"Alexey Trofimenko" <[EMAIL PROTECTED]> wrote:
>
> what do you think about adding C operator, akin %, to perl6 core?
>
> I mean, as$a % $b
> really does int($a) % int($b)
> and returns modulous,
>
> so $a div $b
> really does int( in
Leopold Toetsch a trimis aceste cuvinte prin eter:
>
> Anyone working on that? Who volunteers?
>
> leo
I'll take a whack at it after I'm done with my exams if
noone beats me to it.
--
Alin Iacob Dezordinea nu patrunde
[EMAIL PROTECTED]in noi
On Sun, 20 Jun 2004 15:57:48 +0100, Jonathan Worthington
<[EMAIL PROTECTED]> wrote:
"Alexey Trofimenko" <[EMAIL PROTECTED]> wrote:
what do you think about adding C operator, akin %, to perl6 core?
I mean, as$a % $b
really does int($a) % int($b)
and returns modul
use integer; #Perl 5
my int ($t); #Perl 6
$t = time - $when_it_happen;
$sec=$t%60; $t=int($t/60);
$min=$t%60; $t=int($t/60);
$hours=$t%24; $t=int($t/24);
$days=$t;
return time_elapsed($days,$hours,$min,$sec)
--
Brent "Dax" Royal-Gordon <[EMAIL PROTECTED]>
Perl and Parrot hacker
Oceani
--- Alexey Trofimenko <[EMAIL PROTECTED]> wrote:
> oh my.. it seems to me, that Perl6 starts new age of ASCII-graphics. (not
> ASCII, really.. maybe Uni-graphics?)..
>
> but now i have this issue: I'm coding on Windows, there's already two
> unicode compliant monospace fonts: Lucida Console a
11 matches
Mail list logo