pugs.blogs.com | pugscode.org | pugs.kwiki.org | paste: sial.org/pbot/perl6 | <stevan> Moose... it's the new Camel ":P | .pmc == PPI source filters!
Set by Alias_ on 16 March 2006.
svnbot6 r10392 | fglock++ | PCR - added S05 subcaptures example to 09-ratchet.t 00:02
meppl gute nacht 02:14
xinming clkao: I've found why the bug will happen now... 10:24
meppl guten morgen 11:27
ludan re 15:03
azuroth ro 15:12
shachaf synergy is a software KM switch. 15:39
Oops, wrong channel.
azuroth synergy is what happens when two or more components come together to produce an effect that neither one of them alone could achieve 15:41
Slayer81 hello 17:13
wolverian hm, epigram is neat 22:01
(also horrifying)
obra epigram?
wolverian en.wikipedia.org/wiki/Epigram_progr...g_language
obra Thanks 22:02
ajs_home wolverian: Very similar to Fortress in some ways [[Fortress programming language]] 22:05
wolverian hmm. yeah, I guess. I'll have to reread about Fortress 22:06
thanks :)
wolverian TimToady, does autoindex work with enums? do { take new Card: rank => $^rank, suit => $^suit } 22:44
(where rank and suit are enums) 22:45
ludan bye 22:48
wolverian TimToady, (the block is meant to generate a standard deck) 22:48
root4o hi 23:31
does perl6 has something like assert() in java ? 23:32
mugwump die if () ? 23:34
root4o yes, but in java u may not compile them inside the resulting bytecode 23:35
and have it only in debuging version of your program
i.e. no runtime overhead 23:36
mugwump you can use macros for that sort of thing
root4o i see. 10x 23:37
mugwump assert() is basically a macro
root4o as u said it...i figured out 23:38
mugwump except for the case where you are asserting the type of something... in that case you only really want the compiler to remove the check once it has proven that there may be no code that is generated that can violate that check
eg, subroutine signatures are assertions 23:39
root4o aha..yep