jackdaniel changed the topic of #commonlisp to: Common Lisp, the #1=(programmable . #1#) programming language | Wiki: <https://www.cliki.net> | IRC Logs: <https://irclog.tymoon.eu/libera/%23commonlisp> | Cookbook: <https://lispcookbook.github.io/cl-cookbook> | Pastebin: <https://plaster.tymoon.eu/> | News: ELS'22 this Monday (2022-03-21), see https://european-lisp-symposium.org
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 256 seconds]
flip214 has quit [Read error: Connection reset by peer]
flip214 has joined #commonlisp
trumae has quit [Ping timeout: 252 seconds]
lurker has joined #commonlisp
lurker has quit [Ping timeout: 260 seconds]
xantoz has quit [Ping timeout: 240 seconds]
xantoz has joined #commonlisp
igemnace has joined #commonlisp
eddof13 has joined #commonlisp
<hashfunc569> i'm having an issue. in my class, the #: in a form is seemingly getting stripped away when i initialize said class. here's a minimal example in the repl: https://pastebin.com/kuygzyu2
kevingal has quit [Remote host closed the connection]
<hashfunc569> but the #: doesn't get stripped away in this context:
<hashfunc569> (car '((IN-PACKAGE #:MYPACKAGE))) => (IN-PACKAGE #:MYPACKAGE)
<hashfunc569> and i don't understand why
<hashfunc569> the behavior that i want, is for the #: not not be stripped away
<hashfunc569> *to not be stripped away
X-Scale` has joined #commonlisp
<hashfunc569> nevermind. the problem was in my print function
<hashfunc569> i was using ~A instead of ~S
X-Scale has quit [Ping timeout: 240 seconds]
X-Scale` is now known as X-Scale
<pjb> not he first time…
aeth has quit [Ping timeout: 240 seconds]
aeth has joined #commonlisp
<hashfunc569> pjb: very true haha. what's your general rule on when to use ~A vs ~S
edgar-rft has quit [Remote host closed the connection]
<hashfunc569> i think i've got it. "when returing a string AND wanting the string escaped, use ~S, else use ~A"
edgar-rft has joined #commonlisp
<hashfunc569> "OR, when returning a string, AND the string contains stuff that you don't want the reader nor printer to remove, use ~S, else use ~A"
<pjb> hashfunc569: use ~S by default, and switch to ~A when you want more "pretty" display.
<hashfunc569> now i wonder about the case where i'm returing a string, AND i don't want the string escaped, AND i don't want the reader nor printer to remove anything
<pjb> hashfunc569: if you print to be read, you definitely want ~S = *print-readably* true.
<pjb> ~A = *print-readably* false.
<hashfunc569> pjb: but if i don't want the string escaped AND for it to be readable, then it has to be ~S THEN ~A
<hashfunc569> (FORMAT "~A" (FORMAT "~S" blah))
<hashfunc569> right?
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<pjb> No.
<pjb> (FORMAT nil "~S" "Foo") #| --> "\"Foo\"" |# (format nil "~A" (FORMAT nil "~S" "Foo")) #| --> "\"Foo\"" |# (format nil "~A" x) = (identity x)
<_death> (let ((s "Foo")) (equal (read-from-string (format nil "~S" s)) s)) => true .. the escaping you see comes from the P in REPL
<hashfunc569> (format nil "~A" '(in-package #:mypackage)) => "(IN-PACKAGE MYPACKAGE)"
<hashfunc569> (format nil "~S" '(in-package #:mypackage)) => "(IN-PACKAGE #:MYPACKAGE)"
<hashfunc569> (format nil "~A" (format nil "~A" '(in-package #:mypackage))) => "(IN-PACKAGE MYPACKAGE)"
<hashfunc569> (format nil "~A" (format nil "~S" '(in-package #:mypackage))) => "(IN-PACKAGE #:MYPACKAGE)"
<hashfunc569> (format nil "~S" (format nil "~A" '(in-package #:mypackage))) => "\"(IN-PACKAGE MYPACKAGE)\""
<hashfunc569> (format nil "~S" (format nil "~S" '(in-package #:mypackage))) => "\"(IN-PACKAGE #:MYPACKAGE)\""
White__Flame is now known as White_Flame
<_death> (i) use a pastebin (ii) instead of printing to a string and getting confused by the P in REPL you can try printing to standard output, i.e. (format t "~S" "Foo")
livoreno has joined #commonlisp
<hashfunc569> _death: ok. so is the general-rule-of-thumb: "if you want to see the LITERAL representation of what you're outputting (i.e., what will appear in the file you're outputting to), use *standard-output*"
<hashfunc569> "otherwise, if you want to see LISP printed output (based off of the current state of whatever your printer variables are set to (including the various diffrent prin* function calls)), use (FORMAT NIL ...)
<_death> yeah, because the REPL's printer wants to show you the Lisp object, and if it's a string it needs to escape the contents so that it can be interpreted as such
<hashfunc569> _death: ok now it clicked for me. thanks
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 268 seconds]
trumae has joined #commonlisp
parjanya has quit [Ping timeout: 252 seconds]
dre has joined #commonlisp
Inline__ has joined #commonlisp
Inline has quit [Ping timeout: 240 seconds]
unixlisp has joined #commonlisp
trumae has quit [Ping timeout: 268 seconds]
Inline has joined #commonlisp
Inline__ has quit [Ping timeout: 260 seconds]
trumae has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
Bike has joined #commonlisp
mfiano has quit [Quit: WeeChat 3.4.1]
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
mfiano has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
hashfunc569 has quit [Ping timeout: 256 seconds]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
trumae has quit [Ping timeout: 260 seconds]
asarch has joined #commonlisp
asarch has quit [Quit: Leaving]
waleee has quit [Ping timeout: 252 seconds]
semz_ has joined #commonlisp
semz has quit [Ping timeout: 245 seconds]
hineios9 has joined #commonlisp
hineios has quit [Ping timeout: 240 seconds]
hineios9 is now known as hineios
<Spawns_Carpeting> Shinmera: that is true but its still good to know that the library you are downloading is the one you really requested. for example if its author is a known trustworthy user or whatever
<Spawns_Carpeting> well security is always on a spectrum anyways, just because some risks exist doesn't mean we shouldn't mitigate what we can
lurker has joined #commonlisp
<Spawns_Carpeting> another example would be say, if I uploaded a library and then wanted to use ql to load it on other systems easily. in that case I would trust my own library, but the lack of authentication means it could still (even if unlikely) bite me
beach has joined #commonlisp
semz_ is now known as semz
<beach> Good morning everyone!
tyson2 has quit [Remote host closed the connection]
Bike has quit [Quit: Connection closed]
wacki has joined #commonlisp
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
azimut has quit [Remote host closed the connection]
azimut has joined #commonlisp
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
lisp123 has joined #commonlisp
<unixlisp> Now we can compare the performace of top three CL at x86-64 port, (SBCL 2.2.2, ALLEGRO free express 10.1, LISPWORKS personal edition 7.1.2), using (cl-bench:bench-run). We can see SBCL is fastest in three tests of seven tests about CLOS.
<beach> And SBCL is not that fast with generic dispatch I think.
<unixlisp> They are CLOS/instantiate, CLOS/simple-instantiate, CLOS/method+after.
Everything has quit [Quit: leaving]
<beach> Oh, so generic dispatch is not really measured.
lisp123 has quit [Ping timeout: 250 seconds]
<unixlisp> The worst are CLOS/defmethod, CLOS/complex-methods in SBCL.
<beach> Why should we care about the performance of DEFMETHOD?
shka has joined #commonlisp
akoana has quit [Quit: leaving]
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
<unixlisp> about defmethod, "time taken to compile and execute the DEFMETHOD forms". I think that every big macro has a cost.
unixlisp has quit [Remote host closed the connection]
<beach> I am not sure the cost is with the macro. The expansion has to be compiled, and the time it takes varies with how much the compiler does. But again, DEFMETHOD is usually a compile-time thing to do, so it usually should not have any great impact on run-time performance
unixlisp has joined #commonlisp
<beach> The important performance aspect of CLOS is generic dispatch.
<unixlisp> Is there a simple test?
<beach> I haven't given it any thought. It is probably hard to isolate the generic dispatch itself from the actual work done by the method being called.
unixlisp has quit [Remote host closed the connection]
rotateq has joined #commonlisp
unixlisp has joined #commonlisp
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
<Spawns_Carpet[m]> Hi beach
<beach> Spawns_Carpet[m]: Hey, what's up?
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
<beach> unixlisp: Is it possible to avoid this repeated quitting and joining of yours?
<SAL9000> Hi all! Just wanted to mention that ELS is using #els2022 rather than #elsconf ; for some reason the website is not 100% up-to-date yet. Maybe add that to the /topic ?
<unixlisp> beach: sorry, it must be a net problem.
unixlisp has left #commonlisp [#commonlisp]
<beach> Hello SAL9000.
<rotateq> Good morning. :)
<SAL9000> Good morning! *waves*
unixlisp has joined #commonlisp
<beach> Hello rotateq.
<beach> Uh, oh! Time to go wake up my (admittedly small) family.
<rotateq> Yes indeed. ^^
<rotateq> From 5pm on (when I'm home again) I could also join at possible video meetings or such.
<rotateq> Oh sorry we're in #commonlisp.
unixlisp has quit [Remote host closed the connection]
unixlisp has joined #commonlisp
<unixlisp> What is a good irc client? this gamja irc client always has a connection error.
<beach> I don't know, but I use ERC for Emacs so that I can get my usual abbrevs and my usual spell checker. Most people don't seem to care about those, judging from the way they type.
<unixlisp> there are some irc clients in CL, but I have not try them.
<beach> Mainly beirc. scymtym is working on it, but there is still no spell checker.
<rotateq> I'm happy I can use portacle on the working machine (no root for me) so also via ERC and of course for saner programming. But sometimes the handshake for TLS fails due to the gnutls.c file it says then.
<rotateq> Ah right, I wanted to try beirc too now that I can get some stuff done with McCLIM.
<beach> Once beirc has abbrevs and a spell checker, I will very likely switch.
unixlisp has quit [Remote host closed the connection]
pillton has quit [Ping timeout: 240 seconds]
lurker has quit [Ping timeout: 240 seconds]
frgo has quit [Ping timeout: 250 seconds]
Cymew has joined #commonlisp
dre has quit [Ping timeout: 240 seconds]
shka has quit [Ping timeout: 250 seconds]
<jackdaniel> apparently els'22 stream doesn't require registeration after all
<jackdaniel> see els website for links if you want to join online
rotateq has quit [Remote host closed the connection]
beach has quit [Ping timeout: 252 seconds]
MajorBiscuit has joined #commonlisp
Cymew has quit [Ping timeout: 252 seconds]
MajorBiscuit has quit [Ping timeout: 250 seconds]
MajorBiscuit has joined #commonlisp
attila_lendvai has joined #commonlisp
epolanski has joined #commonlisp
pve has joined #commonlisp
xantoz has quit [Ping timeout: 268 seconds]
xantoz has joined #commonlisp
unilisp has joined #commonlisp
mgl has joined #commonlisp
<ecraven> is there an "unfasl" for sbcl fasls that'll decode them and show me what's stored?
szkl has joined #commonlisp
<unilisp> hello from irc of Mezzano.
<unilisp> where is scymtym's beirc?
s-liao has joined #commonlisp
random-nick has joined #commonlisp
amb007 has quit [Ping timeout: 252 seconds]
amb007 has joined #commonlisp
zacque has joined #commonlisp
Noisytoot has quit [Quit: ZNC 1.8.2 - https://znc.in]
Noisytoot has joined #commonlisp
lisp123 has joined #commonlisp
Josh_2 has joined #commonlisp
<lisp123> nice
<lisp123> jackdaniel: thanks
<lisp123> Man Twitch has the worst sign up ever, but at least you don't need to sign up to watch
<jackdaniel> you may chat on irc
<jackdaniel> but I coudln't find the vlc link
<jackdaniel> (#els2022)
<lisp123> How long till Beach is on?
<jackdaniel> 14utc (15cet)
<lisp123> Thanks!
<jackdaniel> the program is on the els website
<lisp123> unfortunately will be asleep by then
<lisp123> will try my best to stay up
perrierjouet has quit [Quit: WeeChat 3.4.1]
perrierjouet has joined #commonlisp
unilisp has quit []
perrierjouet has quit [Quit: WeeChat 3.4.1]
perrierjouet has joined #commonlisp
s-liao has quit [Ping timeout: 256 seconds]
cosimone has joined #commonlisp
makomo has joined #commonlisp
lisp123 has quit [Remote host closed the connection]
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 256 seconds]
perrierjouet has quit [Quit: WeeChat 3.4.1]
perrierjouet has joined #commonlisp
s-liao has joined #commonlisp
notzmv has quit [Ping timeout: 252 seconds]
s-liao has quit [Ping timeout: 256 seconds]
Jach has quit [Remote host closed the connection]
perrierjouet has quit [Quit: WeeChat 3.4.1]
perrierjouet has joined #commonlisp
beach has joined #commonlisp
livoreno has quit [Ping timeout: 268 seconds]
beach has quit [Ping timeout: 240 seconds]
s-liao has joined #commonlisp
rotateq has joined #commonlisp
razetime has joined #commonlisp
Oddity has quit [Ping timeout: 240 seconds]
rotateq has quit [Ping timeout: 252 seconds]
s-liao has quit [Ping timeout: 256 seconds]
igemnace has quit [Quit: WeeChat 3.4.1]
igemnace has joined #commonlisp
karlosz has joined #commonlisp
<Krystof> ecraven: if you set *show-fops-p* to T, then load with :print t, it will print each fasl operation as it performs it
<Krystof> what do you want to know?
tyson2 has joined #commonlisp
karlosz has quit [Ping timeout: 252 seconds]
s-liao has joined #commonlisp
<ecraven> I've looked at CADR unfasls, and am interested in how "modern" unfasls look like ;)
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 250 seconds]
kevingal has joined #commonlisp
razetime has quit [Ping timeout: 256 seconds]
razetime has joined #commonlisp
rotateq has joined #commonlisp
contrapunctus has left #commonlisp [#commonlisp]
Jach has joined #commonlisp
contrapunctus has joined #commonlisp
notzmv has joined #commonlisp
Cymew has joined #commonlisp
Bike has joined #commonlisp
amb007 has quit [Ping timeout: 260 seconds]
makomo has quit [Ping timeout: 252 seconds]
ec has quit [Quit: ec]
makomo has joined #commonlisp
phantomics has joined #commonlisp
Guest74 has quit [Remote host closed the connection]
ferminmf has joined #commonlisp
trumae has joined #commonlisp
ferminmf has quit [Quit: Client closed]
Cymew has quit [Ping timeout: 260 seconds]
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 240 seconds]
<Krystof> I appreciate the scare quotes. (The SBCL fasl file format probably hasn't materially changed in ~30 years)
s-liao has quit [Quit: Client closed]
Cymew has joined #commonlisp
trumae has quit [Ping timeout: 268 seconds]
notzmv has quit [Ping timeout: 252 seconds]
trumae has joined #commonlisp
s-liao has joined #commonlisp
szkl has quit [Quit: Connection closed for inactivity]
zacque has quit [Quit: Goodbye :D]
Brucio-61 has quit [Ping timeout: 256 seconds]
scymtym has quit [Ping timeout: 245 seconds]
Guest74 has joined #commonlisp
aartaka has quit [Read error: Connection reset by peer]
aartaka has joined #commonlisp
s-liao has quit [Quit: Client closed]
ferminmf has joined #commonlisp
nature has joined #commonlisp
ferminmf has quit [Quit: Client closed]
rotateq has quit [Remote host closed the connection]
mgl has quit [Quit: Client closed]
mgl has joined #commonlisp
pranavats has left #commonlisp [Error from remote client]
trumae has quit [Read error: Connection reset by peer]
trumae has joined #commonlisp
pranavats has joined #commonlisp
makomo has quit [Ping timeout: 252 seconds]
makomo has joined #commonlisp
kevingal has quit [Remote host closed the connection]
ec has joined #commonlisp
dlowe[x] has joined #commonlisp
dlowe[x] has quit [Changing host]
dlowe[x] has joined #commonlisp
dlowe[x] is now known as dlowe
waleee has joined #commonlisp
Brucio-61 has joined #commonlisp
scymtym has joined #commonlisp
karlosz has joined #commonlisp
aartaka has quit [Ping timeout: 260 seconds]
aartaka has joined #commonlisp
Cymew has quit [Ping timeout: 245 seconds]
karlosz has quit [Client Quit]
dlowe has quit [Remote host closed the connection]
aartaka has quit [Ping timeout: 240 seconds]
aartaka has joined #commonlisp
trumae has quit [Ping timeout: 252 seconds]
trumae has joined #commonlisp
notzmv has joined #commonlisp
tane has joined #commonlisp
tane has quit [Changing host]
tane has joined #commonlisp
rotateq has joined #commonlisp
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 260 seconds]
notzmv has quit [Ping timeout: 268 seconds]
frgo has joined #commonlisp
rogersm_ has quit [Read error: Connection reset by peer]
rogersm has joined #commonlisp
shka has joined #commonlisp
frgo has quit [Ping timeout: 256 seconds]
Catie has joined #commonlisp
eddof13 has joined #commonlisp
mgl has quit [Ping timeout: 256 seconds]
phantomics has quit [Quit: Ex-Chat]
trumae has quit [Read error: Connection reset by peer]
trumae has joined #commonlisp
phantomics has joined #commonlisp
razetime has quit [Ping timeout: 268 seconds]
Jach has quit [Remote host closed the connection]
<_death> funny, I think I skimmed the document shown a year ago or so
frgo has joined #commonlisp
frgo has quit [Remote host closed the connection]
frgo has joined #commonlisp
frgo has quit [Client Quit]
Jach has joined #commonlisp
makomo has quit [Ping timeout: 252 seconds]
cage has joined #commonlisp
attila_lendvai has quit [Ping timeout: 256 seconds]
frgo has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
epolanski has quit [Quit: Connection closed for inactivity]
dlowe has joined #commonlisp
rogersm has quit [Read error: Connection reset by peer]
rogersm has joined #commonlisp
dlowe has quit [Remote host closed the connection]
morganw has joined #commonlisp
rogersm has quit [Read error: Connection reset by peer]
rogersm has joined #commonlisp
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dlowe has joined #commonlisp
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 252 seconds]
amb007 has joined #commonlisp
ec_ has joined #commonlisp
ec has quit [Ping timeout: 240 seconds]
bolodgad has joined #commonlisp
notzmv has joined #commonlisp
dlowe has quit [Remote host closed the connection]
mon_aaraj has quit [Ping timeout: 256 seconds]
tyson2 has joined #commonlisp
mon_aaraj has joined #commonlisp
dlowe has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 250 seconds]
MajorBiscuit has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 256 seconds]
trumae has quit [Ping timeout: 245 seconds]
trumae has joined #commonlisp
Oddity has joined #commonlisp
ec_ has quit [Ping timeout: 240 seconds]
Dynom has joined #commonlisp
mon_aaraj has quit [Ping timeout: 256 seconds]
mon_aaraj has joined #commonlisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
ec_ has joined #commonlisp
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 240 seconds]
tyson2 has quit [Remote host closed the connection]
Lord_of_Life has quit [Ping timeout: 250 seconds]
Lord_of_Life has joined #commonlisp
amb007 has quit [Ping timeout: 240 seconds]
hashfunc569 has joined #commonlisp
amb007 has joined #commonlisp
CrashTestDummy has joined #commonlisp
makomo has joined #commonlisp
rogersm has quit [Remote host closed the connection]
rogersm has joined #commonlisp
bolodgad has quit [Quit: Leaving]
CrashTestDummy has quit [Quit: Leaving]
rogersm has quit [Ping timeout: 245 seconds]
tyson2 has joined #commonlisp
pve has quit [Quit: leaving]
cage has quit [Quit: rcirc on GNU Emacs 27.1]
hashfunc569 has quit [Remote host closed the connection]
Guest74 has quit [Quit: Connection closed]
pranavats has left #commonlisp [Error from remote client]
dlowe has quit [Read error: Connection reset by peer]
dlowe has joined #commonlisp
wacki has quit [Quit: Leaving.]
dlowe has quit [Read error: Connection reset by peer]
Dynom has quit [Quit: WeeChat 3.4]
buoy49 has left #commonlisp [#commonlisp]
lottaquestions has joined #commonlisp
mgl has joined #commonlisp
lisp123 has joined #commonlisp
ec_ is now known as ec
wyrd has quit [Ping timeout: 240 seconds]
lisp123 has quit [Ping timeout: 256 seconds]
orestarod has joined #commonlisp
tane has quit [Quit: Leaving]
trumae has quit [Ping timeout: 240 seconds]
amb007 has quit [Ping timeout: 240 seconds]
trumae has joined #commonlisp
wyrd has joined #commonlisp
morganw has quit [Remote host closed the connection]
EsoAlgo has quit [Remote host closed the connection]
EsoAlgo has joined #commonlisp
dre has joined #commonlisp
amb007 has joined #commonlisp
nature has quit [Ping timeout: 250 seconds]
shka has quit [Ping timeout: 240 seconds]
rogersm has joined #commonlisp
aartaka has quit [Ping timeout: 245 seconds]
rogersm has quit [Read error: Connection reset by peer]
aartaka has joined #commonlisp
rogersm has joined #commonlisp
rogersm has quit [Ping timeout: 252 seconds]
aartaka has quit [Ping timeout: 245 seconds]
aartaka has joined #commonlisp
kpoeck has joined #commonlisp
rogersm has joined #commonlisp
gxt has quit [Quit: WeeChat 3.4]
gxt has joined #commonlisp
rogersm has quit [Ping timeout: 252 seconds]
rogersm has joined #commonlisp
morganw has joined #commonlisp
rogersm has quit [Ping timeout: 252 seconds]
aartaka has quit [Ping timeout: 252 seconds]
mgl has quit [Ping timeout: 256 seconds]
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 260 seconds]
orestarod has quit [Ping timeout: 252 seconds]
kpoeck has quit [Quit: Ping timeout (120 seconds)]
Bike has quit [Quit: Lost terminal]
lisp123 has joined #commonlisp
dre has quit [Ping timeout: 240 seconds]
lisp123 has quit [Remote host closed the connection]