00:06 (quit) rudybot: Remote host closed the connection 00:50 (join) jonrafkind 01:03 (join) Demosthenes 02:38 (quit) Lajla: Quit: Phallic Illuminatus 02:46 (join) Lajla 03:00 (part) Ogion 03:07 (quit) jonrafkind: Ping timeout: 264 seconds 03:11 (quit) Lajla: Quit: Phallic Illuminatus 03:19 (join) ti84 03:50 (join) Lajla 04:25 (quit) ti84: Quit: Page closed 04:58 (join) masm 04:59 (quit) Lajla: Ping timeout: 240 seconds 05:07 (join) MayDaniel 05:16 (join) Lajla 05:24 (quit) MayDaniel: Ping timeout: 264 seconds 06:53 (join) b-man_ 06:55 (join) MayDaniel 07:54 (join) lucian 08:05 (part) lucian: "Konversation terminated!" 08:36 (quit) MayDaniel: Read error: Connection reset by peer 08:54 (quit) b-man_: Remote host closed the connection 09:47 (join) MayDaniel 10:33 (quit) MayDaniel: 11:04 (join) anRch 11:15 (quit) masm: Ping timeout: 265 seconds 11:20 (join) rudybot 11:28 (join) masm 11:32 (join) b-man_ 11:34 (join) MayDaniel 11:42 (nick) samth_away -> samth 11:43 (join) sstrickl 11:49 (quit) anRch: Quit: anRch 12:06 (join) anRch 12:13 (join) ti84 12:14 (quit) MayDaniel: Read error: Connection reset by peer 12:40 (join) MayDaniel 12:41 (quit) anRch: Quit: anRch 12:46 (quit) tv|z: Ping timeout: 245 seconds 12:48 (join) tv|z 12:54 (join) mceier 13:01 (join) jonrafkind 13:01 (quit) MayDaniel: 13:10 (join) alexsura1i 13:10 (quit) alexsura1i: Client Quit 13:18 (join) lucian 13:19 (join) Yann1 13:19 Yann1: Hi, is there a easy way to do recursive lambda functions? 13:21 stamourv: there's the Y combinator 13:21 samth: (letrec ([f (lambda (x) (if (zero? x) 1 (f (sub1 x))))]) f) 13:21 stamourv: but it's easier to bind the function (with define or letrec) 13:23 Yann1: Okay, I thought there may be a macro for this. thanks 13:24 samth: there is `rec' from `mzlib/etc' 13:33 samth: jeapostrophe, ping 13:51 (join) anRch 14:06 (quit) b-man_: Remote host closed the connection 14:55 (join) MayDaniel 15:12 (join) Yann3 15:13 (quit) Yann1: Ping timeout: 264 seconds 15:40 (quit) anRch: Quit: anRch 15:46 (join) bem_ 15:48 (quit) bem: Quit: leaving 15:48 (nick) bem_ -> chandler 15:55 (quit) MayDaniel: Read error: Connection reset by peer 16:07 ti84: hello world! :D 16:23 clklein: Is there something like LaTeX's enumerate in Scribble? 16:24 clklein: (or like itemize) 16:24 clklein: oh, nevermind 16:24 clklein: The connection with itemize helped me find the right query :) 16:25 (join) b-man_ 16:48 (quit) orlandu63: Ping timeout: 250 seconds 16:49 (join) orlandu63 17:06 ti84: hello ! I'd like to make a function which would do that : (f '(1 2 3) '(4 5 6) ) --> ((1 2 3) (4 5 6)) any idea ? thx 17:07 ti84: so I give 2 (or more....) lists, and it gives me a list of the lists 17:09 jonrafkind: list 17:09 jonrafkind: (list '(1 2 3) '(4 5 6)) => ((1 2 3) (4 5 6)) 17:10 ti84: oh... ok :) I feel stupid now xD 17:32 (nick) godless_ -> Quetzalcoatl_ 17:50 jonrafkind: clklein, ping 17:50 Quetzalcoatl_: Is there a way to get rid of flickering in Racket's GUI library? 17:50 Quetzalcoatl_: Example: http://codepad.org/jE9cHp4k 17:51 samth: with which version? 17:51 Quetzalcoatl_: 5.0.2 17:51 Quetzalcoatl_: Windows XP. 17:52 samth: i see no flicker on 5.0.99 17:52 samth: on linux 17:53 samth: you should try a current nightly build, and see if it still flickers 17:53 samth: if so, report it on the mailing list 17:53 ti84: I've got a problem !! :( if I write (define L '( (1) (2) (3) '( ) )) and then (list-ref L (- (length L) 1)) it says '( ) [that, is normal]. But if I write (equal? (list-ref L (- (length L) 1)) '( )) it returns #f !!! I don't get it... 17:54 samth: you have an extra ' in the definition of L 17:55 samth: you'll note that the result of the list-ref is ''() (note the extra ') 17:55 (quit) sstrickl: Quit: sstrickl 17:56 ti84: I don't see that... o.O 17:57 samth: where don't you see that? 17:57 samth: the result of (list-ref L (- (length L) 1)) is ''() at the Racket REPL 17:57 ti84: you mean that L should be '( (1) (2) (3) ( )) ? 17:59 ti84: ok, it works !!! thanks :) 17:59 samth: yes, that's what it should be 18:01 ti84: thank you! 18:02 (quit) lucian: Remote host closed the connection 18:05 (join) _mo_ 18:18 (quit) _mo_: Quit: Leaving 18:28 samth: Quetzalcoatl_, thanks for the bug report 18:29 clklein: jonrafkind: pong 18:29 jonrafkind: clklein, sup, do you want to read some agda code????? 18:30 jonrafkind: i have this expression which looks like its not type-correct, but agda doesn't complain about it 18:30 clklein: I'll give it a shot. 18:31 Quetzalcoatl_: samth: You received it? 18:31 samth: yes 18:31 Quetzalcoatl_: The bug reporting tool seems to be hung. 18:31 samth: yeah, it does that to me sometimes too 18:32 Quetzalcoatl_: Hmm.. 18:32 Quetzalcoatl_: Is there a Web page for the bug tracker? 18:32 samth: bugs.racket-lang.org 18:35 (quit) ti84: Quit: Page closed 19:29 (quit) mceier: Quit: leaving 19:45 (quit) b-man_: Remote host closed the connection 20:10 (join) Starscream 20:30 (quit) jonrafkind: Read error: Operation timed out 21:54 (quit) Yann3: Ping timeout: 240 seconds 21:54 (join) Yann1 21:54 (quit) orlandu63: Ping timeout: 240 seconds 21:56 (join) orlandu63 22:14 (quit) Starscream: Ping timeout: 245 seconds 22:14 (join) Starscream 22:21 Starscream: what happened to R6RS in racket? 22:31 chandler: What do you mean, what happened to it? 22:32 chandler: It's still there... 23:13 Starscream: hmmm... does it have a different name? 23:13 Starscream: All I got is R5RS 23:26 (quit) masm: Quit: Leaving. 23:59 (join) jeapostrophe_ 23:59 (quit) jeapostrophe_: Client Quit