--- 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
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
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
"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
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
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
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
Piers Cawley <[EMAIL PROTECTED]> writes:
[...]
> Thanks in advance.
And thanks to Sebastian Riedel, Brent Royal-Gordon, Robert Spier and
the aforementioned Jeffrey Dik I have filled in my lacunae and I'm
ready to get my summary on when Monday rolls around.
Piers Cawley <[EMAIL PROTECTED]> writes:
> For various annoying reasons involving a pernickety external drive and
> a service centre that, after more than a week *still* hasn't taken a
> look at my main machine, I find myself missing a tranche of messages to
> perl6-internals and perl6-language. I
For various annoying reasons involving a pernickety external drive and
a service centre that, after more than a week *still* hasn't taken a
look at my main machine, I find myself missing a tranche of messages to
perl6-internals and perl6-language. If some kind soul were to send me
mbox files contai
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
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_
12 matches
Mail list logo