ismaelga has quit [Remote host closed the connection]
ismaelga has joined #crystal-lang
havenn has joined #crystal-lang
havenwood has quit [Ping timeout: 246 seconds]
ismaelga has quit [Ping timeout: 255 seconds]
Ven has joined #crystal-lang
havenn has quit [Remote host closed the connection]
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ven has joined #crystal-lang
Ven has quit [Client Quit]
Ven has joined #crystal-lang
leafybasil has quit [Remote host closed the connection]
<crystal-gh>
[crystal] Odaeus opened pull request #467: Fix typo in file name "instace_variables_type_inference.md" (gh-pages...patch-1) http://git.io/pZm5
r0ast has joined #crystal-lang
leafybasil has joined #crystal-lang
r0ast has quit [Ping timeout: 256 seconds]
shadeslayer has quit [Ping timeout: 256 seconds]
shadeslayer has joined #crystal-lang
<ponga>
>> x = y = z = 0; puts x;
<DeBot>
ponga: 0
<ponga>
ho
<ponga>
exactly like ruby
<ponga>
fascinating
<jhass>
crystal has largely the same expression semantics
<jhass>
so every expression has a value
<jhass>
the value of an assignment is it's right hand side
<ponga>
i thought it wouldn't work cos cry is compiled
<jhass>
so that's x = (y = (z = 0)) or tmp = (z = 0); tmp = (y = tmp); z = tmp
<jhass>
that has nothing to do with that aspect :)
<ponga>
i see
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bcardiff has joined #crystal-lang
Ven has joined #crystal-lang
asterite has joined #crystal-lang
weskinner_work has joined #crystal-lang
waj has joined #crystal-lang
ismaelga has joined #crystal-lang
havenwood has joined #crystal-lang
<weskinner_work>
happy Monday :)
havenn has joined #crystal-lang
havenwood has quit [Ping timeout: 240 seconds]
havenn has quit [Ping timeout: 264 seconds]
<crystal-gh>
[crystal] asterite closed pull request #467: Fix typo in file name "instace_variables_type_inference.md" (gh-pages...patch-1) http://git.io/pZm5
<waj>
hey! good morning ;)
<weskinner_work>
how is the evented branch coming along?
<waj>
really good! all the tests are passing now both in mac and linux
<waj>
and I tested the http_server sample and I got good performance results
<waj>
around 12k req/sec with 20 concurrent connections and 50k req/sec if keep-alive is used ;)
<waj>
and I know there are big optimization oportunities
havenwood has joined #crystal-lang
<weskinner_work>
that's great!
<weskinner_work>
some very solid benchmarks so early on
ismaelga has quit [Ping timeout: 252 seconds]
asterite has quit [Quit: Leaving.]
<ponga>
hi guys
asterite has joined #crystal-lang
<asterite>
hi ponga :)
<ponga>
its kinda scary without knowing you read all the logs
<crystal-gh>
[crystal] asterite pushed 2 new commits to master: http://git.io/pcGm
<crystal-gh>
crystal/master 8453c94 Ary Borenszweig: Doc: always include "src" directory. Also: added docs file to generate docs for the standard library
<crystal-gh>
crystal/master 3ff766c Ary Borenszweig: Disallow the following types in generics (for now): Object, Value, Reference, Number, Int, Float. That is, until we decide how to implement them well and efficiently.
<ponga>
lol
<weskinner_work>
waj: would errors like:
<weskinner_work>
main_module:(.text+0x20c): undefined reference to `co_thread_init'
<weskinner_work>
main_module:(.text+0x2b2): undefined reference to `co_set_data'
<weskinner_work>
main_module:(.text+0x402): undefined reference to `co_set_data'
<weskinner_work>
when I try to build the compiler on evented branch mean I'm on the wrong version of libpcl?
<waj>
yes
<waj>
we'll include a precompiled version of libpcl with the binaries
<waj>
but in the meantime, please download and compile libpcl from sources