--- 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
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
"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
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
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_
11 matches
Mail list logo