2014-11-06T00:04:23Z hiroakip quit (Ping timeout: 240 seconds) 2014-11-06T00:10:18Z Sgeo joined #scheme 2014-11-06T00:13:59Z Sgeo_ quit (Ping timeout: 245 seconds) 2014-11-06T00:14:13Z Sgeo_ joined #scheme 2014-11-06T00:16:53Z gnef joined #scheme 2014-11-06T00:16:54Z Sgeo quit (Ping timeout: 245 seconds) 2014-11-06T00:18:53Z gnef quit (Client Quit) 2014-11-06T00:19:08Z gnef joined #scheme 2014-11-06T00:20:23Z dsp joined #scheme 2014-11-06T00:20:54Z gnef quit (Client Quit) 2014-11-06T00:21:05Z gnef joined #scheme 2014-11-06T00:21:23Z atomx joined #scheme 2014-11-06T00:25:51Z Sgeo joined #scheme 2014-11-06T00:27:10Z ijp quit (Ping timeout: 250 seconds) 2014-11-06T00:27:11Z Sgeo_ quit (Ping timeout: 244 seconds) 2014-11-06T00:29:58Z kongtomo_ joined #scheme 2014-11-06T00:30:49Z kongtomo_ quit (Client Quit) 2014-11-06T00:32:17Z Sgeo_ joined #scheme 2014-11-06T00:32:21Z kongtomorrow quit (Ping timeout: 244 seconds) 2014-11-06T00:35:23Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-06T00:36:04Z Sgeo quit (Ping timeout: 245 seconds) 2014-11-06T00:36:54Z Sgeo_ quit (Ping timeout: 245 seconds) 2014-11-06T00:47:48Z kongtomorrow joined #scheme 2014-11-06T00:48:39Z davexunit quit (Quit: Later) 2014-11-06T00:59:23Z jusss joined #scheme 2014-11-06T01:07:29Z ProbonoBonobo joined #scheme 2014-11-06T01:09:51Z araujo quit (Ping timeout: 265 seconds) 2014-11-06T01:10:45Z rtra quit (Ping timeout: 265 seconds) 2014-11-06T01:11:40Z bjz_ quit (Ping timeout: 255 seconds) 2014-11-06T01:12:48Z jusss quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-06T01:13:40Z jusss joined #scheme 2014-11-06T01:15:38Z Sgeo joined #scheme 2014-11-06T01:17:32Z araujo joined #scheme 2014-11-06T01:19:14Z rtra joined #scheme 2014-11-06T01:22:04Z ehaliewicz joined #scheme 2014-11-06T01:22:05Z gnef quit (Quit: Ex-Chat) 2014-11-06T01:23:29Z kongtomorrow quit 2014-11-06T01:26:34Z frkout joined #scheme 2014-11-06T01:27:56Z ehaliewicz quit (Ping timeout: 255 seconds) 2014-11-06T01:28:25Z vanila quit (Quit: Leaving) 2014-11-06T01:31:01Z frkout quit (Ping timeout: 255 seconds) 2014-11-06T01:37:42Z leo2007 joined #scheme 2014-11-06T01:37:45Z jusss quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-06T01:38:34Z jeapostrophe joined #scheme 2014-11-06T01:38:48Z jusss joined #scheme 2014-11-06T01:39:55Z jusss quit (Client Quit) 2014-11-06T01:40:49Z jusss joined #scheme 2014-11-06T01:46:25Z robot-beethoven joined #scheme 2014-11-06T01:46:34Z zv joined #scheme 2014-11-06T01:51:50Z zv quit (Read error: Connection reset by peer) 2014-11-06T01:55:39Z zv joined #scheme 2014-11-06T01:57:29Z stepnem quit (Ping timeout: 264 seconds) 2014-11-06T02:26:56Z Nizumzen joined #scheme 2014-11-06T02:27:44Z tobik quit (Ping timeout: 245 seconds) 2014-11-06T02:29:57Z tobik joined #scheme 2014-11-06T02:31:41Z amgarchIn9 quit (Ping timeout: 264 seconds) 2014-11-06T02:32:44Z jusss quit (Read error: Connection reset by peer) 2014-11-06T02:33:23Z jusss joined #scheme 2014-11-06T02:33:53Z joast quit (Ping timeout: 240 seconds) 2014-11-06T02:34:41Z frkout joined #scheme 2014-11-06T02:34:48Z ProbonoBonobo quit (Read error: Connection reset by peer) 2014-11-06T02:35:17Z ProbonoBonobo joined #scheme 2014-11-06T02:37:32Z frkout_ joined #scheme 2014-11-06T02:38:48Z Hcnsh joined #scheme 2014-11-06T02:39:07Z Hcnsh: guys 2014-11-06T02:39:13Z Hcnsh: is it somehow possible to make a list of functions? 2014-11-06T02:39:15Z Hcnsh: that'd be cool 2014-11-06T02:39:49Z frkout quit (Ping timeout: 245 seconds) 2014-11-06T02:40:46Z adu joined #scheme 2014-11-06T02:41:07Z rtra: sure, procedures are first class citizens 2014-11-06T02:42:35Z frkout_ quit (Remote host closed the connection) 2014-11-06T02:47:16Z frkout joined #scheme 2014-11-06T02:47:29Z frkout quit (Read error: Connection reset by peer) 2014-11-06T02:47:43Z frkout joined #scheme 2014-11-06T02:50:37Z frkout quit (Remote host closed the connection) 2014-11-06T02:51:49Z Riastradh quit (Ping timeout: 250 seconds) 2014-11-06T03:01:00Z cky: rudybot: (define list-of-funcs (list (lambda (x) (+ x 2)) (lambda (x) (* x 2)) (lambda (x) (expt x 2)))) 2014-11-06T03:01:01Z rudybot: cky: your sandbox is ready 2014-11-06T03:01:01Z rudybot: cky: Done. 2014-11-06T03:01:36Z cky: rudybot: (map (lambda (f) (f 10)) list-of-funcs) 2014-11-06T03:01:36Z rudybot: cky: ; Value: '(12 20 100) 2014-11-06T03:01:40Z cky: Hcnsh: ^ 2014-11-06T03:11:20Z ddp joined #scheme 2014-11-06T03:15:33Z davexunit joined #scheme 2014-11-06T03:15:43Z mrowe is now known as mrowe_away 2014-11-06T03:16:50Z mrowe_away is now known as mrowe 2014-11-06T03:19:32Z Hcnsh: thanks 2014-11-06T03:24:45Z joast joined #scheme 2014-11-06T03:25:06Z Rodya_ joined #scheme 2014-11-06T03:28:19Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-06T03:31:01Z macdice quit (Remote host closed the connection) 2014-11-06T03:31:03Z ddp quit (Quit: ddp) 2014-11-06T16:49:03Z ccl-logbot joined #scheme 2014-11-06T16:49:03Z 2014-11-06T16:49:03Z names: ccl-logbot iterrogo MichaelRaskin gravicappa Rubix theseb jeapostrophe vanila visualshock effy Riastradh haroldwu stamourv stepnem Sgeo duggiefresh Nizumzen oleo daviid davexunit taylanub atomx gabot jrslepak jkraemer bpalmer pnkfelix srenatus BossKonaSegwaY DGASAU civodul c74d ByronJohnson ventonegro b4283 asumu ggVGc bjz araujo joneshf-laptop ananna alezost joast tobik zv dsp Nshag cibs pjb psy_ TrueShiftBlue cjh` Vutral bb010g_ abbe leppie swilr masm 2014-11-06T16:49:03Z names: hiyosi dmiles pyon copec karswell tadni rudybot kbtr Soft carc cdidd_ githogori benaiah turbofail ski mutley89 rsf girrig gf3 _5kg Kruppe weinholt edw wilfredh fadein cataska chameco sethalves lloda` Natch pjdelport fikusz C-Keen tessier zeroish hellome peterhil acarrico ohama Intensity acieroid Kryo mario-goulart omefire1 Khisanth ozzloy xenophon` eli ivanshmakov Neet twem2 joneshf mornfall nisstyre cmatei defanor choas sav Riviera gluegadget cojy 2014-11-06T16:49:03Z names: kwmiebach superjudge Kabaka eMBee vukcrni gnomon utkarsh ecraven klltkr CoverSlide ELLIOTTCABLE ggherdov aksatac jcloud ivan\ juanfra diginet Blkt amoe kilimanjaro tali713 emma pchrist DerGuteMoritz LeoNerd SHODAN petercommand FracV akkad finnrobi Razz necronian teiresias fgudin ft mrowe_away aap pygospa amgarching eagleflo nitrix mikeyhc z0d offby1 dan64 byte48 Saeren_ dytrivedi_ cky greghendershott averell ctindall fizzie antoszka dpk serhart aking 2014-11-06T16:49:03Z names: balkamos samth micro^ clog cross poucet GGMethos sigjuice tsuyoshi SirDayBat zbigniew tstc rotty_ dca yosafbridge evhan klutometis arrdem certainty niklasl duncanm 2014-11-06T16:49:56Z leo2007 joined #scheme 2014-11-06T16:58:03Z xyh joined #scheme 2014-11-06T17:00:55Z Rubix quit (Read error: Connection reset by peer) 2014-11-06T17:01:17Z Shadox joined #scheme 2014-11-06T17:01:45Z Rubix joined #scheme 2014-11-06T17:03:14Z Aune joined #scheme 2014-11-06T17:04:46Z amgarchIn9 joined #scheme 2014-11-06T17:11:47Z developernotes joined #scheme 2014-11-06T17:13:30Z ijp joined #scheme 2014-11-06T17:13:50Z pnkfelix quit (Quit: rcirc on GNU Emacs 24.3.92.1) 2014-11-06T17:14:13Z Aune quit (Read error: Connection reset by peer) 2014-11-06T17:14:30Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-06T17:15:45Z MrSavage joined #scheme 2014-11-06T17:17:10Z oleo__ joined #scheme 2014-11-06T17:17:55Z oleo is now known as Guest82659 2014-11-06T17:18:34Z Guest82659 quit (Ping timeout: 245 seconds) 2014-11-06T17:19:28Z ProbonoBonobo joined #scheme 2014-11-06T17:23:28Z ProbonoBonobo quit (Read error: Connection reset by peer) 2014-11-06T17:23:38Z ProbonoBonobo joined #scheme 2014-11-06T17:25:03Z ventonegro quit (Remote host closed the connection) 2014-11-06T17:27:16Z amgarchIn9 quit (Ping timeout: 258 seconds) 2014-11-06T17:31:35Z Aune joined #scheme 2014-11-06T17:35:14Z ProbonoBonobo quit (Remote host closed the connection) 2014-11-06T17:35:46Z ProbonoBonobo joined #scheme 2014-11-06T17:38:23Z amgarchIn9 joined #scheme 2014-11-06T17:40:19Z ProbonoBonobo quit (Ping timeout: 255 seconds) 2014-11-06T17:40:32Z Aune quit (Read error: Connection reset by peer) 2014-11-06T17:45:47Z b4283 quit (Quit: Konversation terminated!) 2014-11-06T17:51:15Z xyh left #scheme 2014-11-06T17:53:09Z amgarchIn9 quit (Ping timeout: 245 seconds) 2014-11-06T17:54:44Z developernotes quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2014-11-06T17:58:10Z Aune joined #scheme 2014-11-06T17:59:53Z aldo_ joined #scheme 2014-11-06T18:04:18Z peterhil quit (Quit: Must not waste too much time here...) 2014-11-06T18:04:24Z amgarchIn9 joined #scheme 2014-11-06T18:07:43Z Aune quit (Read error: Connection reset by peer) 2014-11-06T18:09:38Z aldo__ joined #scheme 2014-11-06T18:10:28Z amgarchIn9 quit (Ping timeout: 255 seconds) 2014-11-06T18:10:36Z zacts joined #scheme 2014-11-06T18:11:00Z aldo_ quit (Ping timeout: 244 seconds) 2014-11-06T18:19:10Z zv quit (Ping timeout: 256 seconds) 2014-11-06T18:20:28Z sheilong joined #scheme 2014-11-06T18:21:44Z theseb quit (Quit: Leaving) 2014-11-06T18:24:03Z Aune joined #scheme 2014-11-06T18:24:09Z visualshock quit (Quit: Leaving) 2014-11-06T18:43:08Z srenatus quit (Quit: Connection closed for inactivity) 2014-11-06T18:48:34Z developernotes joined #scheme 2014-11-06T18:50:02Z zacts quit (Quit: leaving) 2014-11-06T19:05:55Z Isp-sec joined #scheme 2014-11-06T19:12:24Z developernotes quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2014-11-06T19:16:00Z ProbonoBonobo joined #scheme 2014-11-06T19:16:12Z hiroakip joined #scheme 2014-11-06T19:22:00Z developernotes joined #scheme 2014-11-06T19:22:01Z ProbonoBonobo quit (Read error: Connection reset by peer) 2014-11-06T19:25:46Z ProbonoBonobo joined #scheme 2014-11-06T19:28:08Z ivanshmakov quit (Read error: Connection reset by peer) 2014-11-06T19:30:34Z aldo__ quit (Quit: Sto andando via) 2014-11-06T19:30:39Z tadni quit (Read error: Connection reset by peer) 2014-11-06T19:30:59Z joneshf-laptop quit (Remote host closed the connection) 2014-11-06T19:31:45Z tadni joined #scheme 2014-11-06T19:35:56Z ivanshmakov joined #scheme 2014-11-06T19:44:22Z pyon quit (Ping timeout: 240 seconds) 2014-11-06T19:59:01Z ivanshmakov quit (Ping timeout: 260 seconds) 2014-11-06T20:02:22Z pjb quit (Read error: Connection reset by peer) 2014-11-06T20:02:45Z pjb` joined #scheme 2014-11-06T20:04:27Z masm quit (Ping timeout: 250 seconds) 2014-11-06T20:26:17Z BitPuffin joined #scheme 2014-11-06T20:28:25Z bjz quit (Ping timeout: 260 seconds) 2014-11-06T20:29:59Z amgarchIn9 joined #scheme 2014-11-06T20:30:46Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-06T20:31:52Z civodul joined #scheme 2014-11-06T20:35:59Z bjz joined #scheme 2014-11-06T20:36:17Z developernotes quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2014-11-06T20:37:41Z MrSavage quit (Ping timeout: 255 seconds) 2014-11-06T20:38:29Z pyon joined #scheme 2014-11-06T20:42:16Z developernotes joined #scheme 2014-11-06T20:44:09Z pjb` is now known as pjb 2014-11-06T20:49:13Z developernotes quit (Quit: Textual IRC Client: www.textualapp.com) 2014-11-06T20:50:23Z bjz quit (Ping timeout: 250 seconds) 2014-11-06T20:51:00Z bjz joined #scheme 2014-11-06T20:52:21Z kongtomorrow joined #scheme 2014-11-06T20:55:39Z bjz quit (Ping timeout: 245 seconds) 2014-11-06T21:07:45Z _leb joined #scheme 2014-11-06T21:09:53Z krono joined #scheme 2014-11-06T21:12:19Z daviid quit (Ping timeout: 265 seconds) 2014-11-06T21:12:29Z kongtomorrow quit 2014-11-06T21:16:59Z zacts joined #scheme 2014-11-06T21:18:19Z gravicappa quit (Remote host closed the connection) 2014-11-06T21:22:31Z krono: hey 2014-11-06T21:22:58Z krono: i try to use fixflo specialized procedures on larceny 2014-11-06T21:23:10Z krono: but i don't know how to make fx= visible 2014-11-06T21:23:16Z krono: can anybody help? 2014-11-06T21:25:20Z effy_ joined #scheme 2014-11-06T21:26:05Z effy quit (Ping timeout: 244 seconds) 2014-11-06T21:26:42Z ProbonoBonobo quit (Read error: Connection reset by peer) 2014-11-06T21:27:20Z jeapostr1phe joined #scheme 2014-11-06T21:30:13Z jeapostrophe quit (Ping timeout: 244 seconds) 2014-11-06T21:30:45Z stamourv: knono: Here's a guess: These may only be available in R6RS mode, which may not be the default. 2014-11-06T21:30:52Z stamourv: er, krono^ 2014-11-06T21:31:05Z stamourv: You may need to explicilty switch larceny to that mode. 2014-11-06T21:31:06Z krono: stamourv: seems so 2014-11-06T21:31:11Z krono: hummhumm 2014-11-06T21:32:14Z kongtomorrow joined #scheme 2014-11-06T21:41:51Z Hcnsh joined #scheme 2014-11-06T21:42:35Z pnkfelix joined #scheme 2014-11-06T21:43:27Z BitPuffin quit (Ping timeout: 272 seconds) 2014-11-06T21:48:35Z BitPuffin joined #scheme 2014-11-06T21:58:15Z davexunit quit (Quit: Later) 2014-11-06T21:58:31Z mrowe_away is now known as mrowe 2014-11-06T21:58:40Z ProbonoBonobo joined #scheme 2014-11-06T22:01:38Z ProbonoBonobo quit (Read error: Connection reset by peer) 2014-11-06T22:01:52Z iKlsR joined #scheme 2014-11-06T22:02:15Z ProbonoBonobo joined #scheme 2014-11-06T22:02:25Z Nizumzen joined #scheme 2014-11-06T22:07:46Z aranhoide joined #scheme 2014-11-06T22:15:27Z kongtomorrow quit 2014-11-06T22:15:36Z duggiefresh quit (Remote host closed the connection) 2014-11-06T22:15:44Z zacts quit (Quit: leaving) 2014-11-06T22:16:02Z duggiefresh joined #scheme 2014-11-06T22:20:53Z duggiefresh quit (Ping timeout: 264 seconds) 2014-11-06T22:22:39Z Rubix quit (Remote host closed the connection) 2014-11-06T22:23:41Z iKlsR quit (Quit: Respawning..) 2014-11-06T22:26:05Z Hcnsh left #scheme 2014-11-06T22:33:33Z tcsc joined #scheme 2014-11-06T22:50:40Z ijp` joined #scheme 2014-11-06T22:54:52Z ijp quit (Ping timeout: 255 seconds) 2014-11-06T22:54:52Z ijp` is now known as ijp 2014-11-06T23:00:43Z BitPuffin quit (Ping timeout: 255 seconds) 2014-11-06T23:00:49Z kongtomorrow joined #scheme 2014-11-06T23:01:23Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-06T23:01:48Z BitPuffin joined #scheme 2014-11-06T23:05:52Z pnkfelix quit (Quit: rcirc on GNU Emacs 24.3.92.1) 2014-11-06T23:11:30Z kongtomorrow quit 2014-11-06T23:15:07Z Riastradh quit (Ping timeout: 250 seconds) 2014-11-06T23:19:33Z Isp-sec quit (Ping timeout: 264 seconds) 2014-11-06T23:19:58Z amgarchIn9 quit (Ping timeout: 244 seconds) 2014-11-06T23:23:40Z jeapostr1phe quit (Ping timeout: 255 seconds) 2014-11-06T23:28:07Z iterrogo quit (Ping timeout: 250 seconds) 2014-11-06T23:28:17Z _leb quit (Quit: Computer has gone to sleep.) 2014-11-06T23:29:21Z ijp quit (Read error: Connection reset by peer) 2014-11-06T23:29:42Z ijp joined #scheme 2014-11-06T23:30:12Z vinleod joined #scheme 2014-11-06T23:32:41Z adu joined #scheme 2014-11-06T23:47:26Z duggiefresh joined #scheme 2014-11-06T23:48:50Z kongtomorrow joined #scheme 2014-11-06T23:52:22Z duggiefresh quit (Ping timeout: 256 seconds) 2014-11-06T23:52:23Z kongtomorrow quit (Read error: Connection reset by peer) 2014-11-06T23:58:34Z hiroakip quit (Remote host closed the connection) 2014-11-06T23:59:02Z kongtomorrow joined #scheme