Re: unicodian monospace fonts for windows(?)

2004-06-20 Thread Goplat
--- 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

Re: div operator

2004-06-20 Thread Brent 'Dax' Royal-Gordon
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

Re: div operator

2004-06-20 Thread Alexey Trofimenko
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

Re: Big nums

2004-06-20 Thread Alin Iacob
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

Re: div operator

2004-06-20 Thread Jonathan Worthington
"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

Re: unicodian monospace fonts for windows(?)

2004-06-20 Thread Alexey Trofimenko
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

Re: unicodian monospace fonts for windows(?)

2004-06-20 Thread Andrew Shitov
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

unicodian monospace fonts for windows(?)

2004-06-20 Thread Alexey Trofimenko
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

Re: Another small task for the interested

2004-06-20 Thread Ion Alexandru Morega
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

div operator

2004-06-20 Thread Alexey Trofimenko
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

"=>" brother

2004-06-20 Thread Alexey Trofimenko
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_