teardown has quit [Write error: Connection reset by peer]
cantstanya has quit [Read error: Connection reset by peer]
aeth has quit [Ping timeout: 272 seconds]
aeth has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 240 seconds]
teardown has joined #racket
badkins has joined #racket
cantstanya has joined #racket
orivej has quit [Ping timeout: 264 seconds]
dhil has quit [Ping timeout: 264 seconds]
vraid has joined #racket
libertyprime has quit [Remote host closed the connection]
phillbush has quit [Quit: Leaving]
vraid has quit [Ping timeout: 264 seconds]
aeth_ has joined #racket
aeth has quit [Disconnected by services]
aeth_ is now known as aeth
aeth has quit [Ping timeout: 272 seconds]
aeth has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
badkins has joined #racket
_whitelogger has joined #racket
badkins has joined #racket
YuGiOhJCJ has joined #racket
sschwarz1r has joined #racket
sschwarzer has quit [Ping timeout: 264 seconds]
_whitelogger has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
caente has quit [Ping timeout: 272 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 272 seconds]
Lowl3v3l has joined #racket
Lowl3v3l has quit [Remote host closed the connection]
_whitelogger has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
ArneBab has joined #racket
rgherdt has joined #racket
Lowl3v3l has joined #racket
orivej has joined #racket
gpanders has quit [Read error: Connection reset by peer]
gpanders has joined #racket
orivej has quit [Ping timeout: 265 seconds]
ArneBab has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
<dzoe>
samth: Will you, please, ping Asumu to update the PPA as well? (Sorry to bother you, but I remember it was you who managed to contact him last time).
karswell has joined #racket
Sgeo has quit [Read error: Connection reset by peer]
orivej has joined #racket
phillbush has joined #racket
badkins has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Remote host closed the connection]
libertyprime has joined #racket
badkins has joined #racket
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
badkins has quit [Ping timeout: 264 seconds]
dhil has joined #racket
dhil has quit [Ping timeout: 240 seconds]
caente has joined #racket
sschwarz1r has quit [Remote host closed the connection]
sz0 has joined #racket
dhil has joined #racket
acarrico has quit [Ping timeout: 240 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
ephemera_ has quit [Ping timeout: 264 seconds]
ephemera_ has joined #racket
sagax has joined #racket
cybersyn has joined #racket
ArneBab has joined #racket
ArneBab has quit [Ping timeout: 240 seconds]
<cybersyn>
hi y'all, i'm using Racket to work through SICP with #lang sicp. if I want to start using the unicode λ instead of (lambda ) is there a quick way to import it?
<ecraven>
not sure whether Racket brings anything with it, but you might be able to use `define-syntax'
<ecraven>
I just use Emacs, which can *display* a nice λ, but still leaves it "lambda" underneath
badkins has joined #racket
karswell has quit [Ping timeout: 264 seconds]
<cybersyn>
ecraven: thanks! yeah, I'm using emacs as well. the issue is that the #lang sicp /doesnt/ include unicode. i'll check out define-syntax though, thanks!
<cybersyn>
oohh, i get what you're saying
<cybersyn>
whats the trick for making that happen?
MetaHertz has joined #racket
jellie has joined #racket
jellie has quit [Client Quit]
<ecraven>
there are better packages for this, but this will work: http://ix.io/2Pq5
<ecraven>
just call that function to enable it (for every buffer)
<ecraven>
for example (add-hook 'scheme-mode-hook #'pretty-lambdas)
<ecraven>
you can do it for anything else you want too, I also have pretty-lameds ;)
MetaHertz has quit [Remote host closed the connection]
badkins has quit [Remote host closed the connection]
badkins has joined #racket
<cybersyn>
ecraven: thank you!
nullman has quit [Remote host closed the connection]
aidalgol has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
Sgeo has joined #racket
MetaHertz has joined #racket
nullman has joined #racket
mizu_no_oto has joined #racket
mizu_no_oto has quit [Quit: Computer has gone to sleep.]
mizu_no_oto has joined #racket
mizu_no_oto has quit [Excess Flood]
mizu_no_oto has joined #racket
mizu_no_oto has quit [Ping timeout: 240 seconds]
badkins has quit [Remote host closed the connection]
badkins has joined #racket
aidalgol has joined #racket
badkins has quit [Ping timeout: 264 seconds]
mizu_no_oto has joined #racket
cybersyn has quit [Remote host closed the connection]
cybersyn has joined #racket
mizu_no_oto has quit [Ping timeout: 256 seconds]
badkins has joined #racket
mizu_no_oto has joined #racket
mizu_no_oto has quit [Excess Flood]
mizu_no_oto has joined #racket
mizu_no_oto has quit [Ping timeout: 240 seconds]
mirrorbird has joined #racket
XorSwap has joined #racket
<XorSwap>
I have an expression like (func1 (func2 (func3 (func4 value)))), is there a way to write that nicer, without the )))) ?
<dzoe>
XorSwap: Like (add1 (add1 (add1 (add1 4)))) to ((compose add1 add1 add1 add1) 4) ?
<dzoe>
(Not a very useful example, but it shows the pattern).