jhass changed the topic of #crystal-lang to: The Crystal programming language | http://crystal-lang.org | Crystal 0.7.4 | Paste > 3 lines of text to https://gist.github.com | GH: https://github.com/manastech/crystal - Docs: http://crystal-lang.org/docs/ | API: http://crystal-lang.org/api/ | Logs: http://irclog.whitequark.org/crystal-lang
mdz has quit [Remote host closed the connection]
havenwood has quit [Ping timeout: 246 seconds]
fowlduck has quit [Remote host closed the connection]
bcardiff has quit [Quit: bcardiff]
mdz has joined #crystal-lang
ozra has quit [Ping timeout: 246 seconds]
fowlduck has joined #crystal-lang
mdz has quit [Remote host closed the connection]
mdz has joined #crystal-lang
mdz has quit [Remote host closed the connection]
mdz has joined #crystal-lang
NeverDie has joined #crystal-lang
_whitelogger_ has joined #crystal-lang
mdz has quit [Remote host closed the connection]
havenwood has joined #crystal-lang
mdz has joined #crystal-lang
mdz has quit [Ping timeout: 276 seconds]
fowlduck has quit [Remote host closed the connection]
mdz has joined #crystal-lang
mdz has quit [Remote host closed the connection]
<crystal-gh> [crystal] yui-knk opened pull request #944: [ci skip] Update test descriptions (master...fix/test_comment2) http://git.io/vqZTn
BlaXpirit has joined #crystal-lang
NeverDie has quit [Quit: I'm off to sleep. ZZZzzz…]
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 248 seconds]
ponga has joined #crystal-lang
<crystal-gh> [crystal] PragTob opened pull request #945: Fix inheritance docs as reported on Mailing list (gh-pages...fix-inheritance-docs) http://git.io/vqZRe
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 248 seconds]
havenwood has quit [Ping timeout: 246 seconds]
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 248 seconds]
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 248 seconds]
ozra has joined #crystal-lang
_whitelogger_ has quit [Ping timeout: 252 seconds]
_whitelogger_ has joined #crystal-lang
jhass has quit [Quit: Bye]
jhass has joined #crystal-lang
bcardiff has joined #crystal-lang
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 248 seconds]
Dreamer3 has quit [Quit: Computer has gone to sleep.]
Dreamer3 has joined #crystal-lang
havenwood has joined #crystal-lang
NeverDie has joined #crystal-lang
sandelius has joined #crystal-lang
n1ftyn8_ has quit []
<sandelius> Can you make objects immutable in Crystal?
mdz has joined #crystal-lang
n1ftyn8_ has joined #crystal-lang
mdz has quit [Remote host closed the connection]
sandelius has quit [Quit: Textual IRC Client: www.textualapp.com]
endou___________ has quit []
endou___________ has joined #crystal-lang
jtarchie has joined #crystal-lang
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 246 seconds]
NeverDie has quit [Quit: I'm off to sleep. ZZZzzz…]
<BlaXpirit> gone
bcardiff has quit [Quit: bcardiff]
unshadow has joined #crystal-lang
bcardiff has joined #crystal-lang
mandarinkin has joined #crystal-lang
<mandarinkin> maybe good idea to write webassembly projects on crystal
<mandarinkin> try to do support
<mandarinkin> guys
<jhass> note that currently Crystal depends on bdw gc, libpcl and libevent
<jhass> ?guys=we're not all guys - while you probably don't meant to be exclusive, not everybody feels that way. Maybe consider using "folks", "y'all" or "everyone" instead?
<DeBot> jhass: Set guys.
<mandarinkin> you ned good leader
<jhass> what makes you say we don't have one?
<mandarinkin> di you think about webassmbl with crystal?
<jhass> it's obvious enough. Not sure it's a good focus atm
<mandarinkin> cool
NeverDie has joined #crystal-lang
shama has joined #crystal-lang
fowlduck has joined #crystal-lang
fowlduck has quit [Ping timeout: 248 seconds]
shadeslayer has quit [Ping timeout: 276 seconds]
shadeslayer has joined #crystal-lang
ddfreyne has quit [*.net *.split]
ddfreyne has joined #crystal-lang
NeverDie_ has joined #crystal-lang
NeverDie has quit [Ping timeout: 255 seconds]
bcardiff has quit [Ping timeout: 255 seconds]
fowlduck has joined #crystal-lang
sadin has joined #crystal-lang
NeverDie has joined #crystal-lang
NeverDie has quit [Client Quit]
NeverDie has joined #crystal-lang
NeverDie_ has quit [Ping timeout: 264 seconds]
zz_Cidan is now known as Cidan
sadin has quit [Remote host closed the connection]
_whitelogger_ has joined #crystal-lang
lokulin has joined #crystal-lang
Cidan is now known as zz_Cidan
sadin has joined #crystal-lang
sadin has quit [Remote host closed the connection]
fowlduck has quit [Remote host closed the connection]
sadin has joined #crystal-lang
<ozra> Are error messages printed with empty lines in between for everyone, or is there some incompatibility with my terminal?
<BlaXpirit> ozra, i'm not getting empty lines
<ozra> Ok, might be my watch-make script then.. hmm. works for other pilers though..
fowlduck has joined #crystal-lang
<ozra> Nope get it when running straight too. Weird.
sadin has quit []
sadin has joined #crystal-lang
sadin has quit [Remote host closed the connection]
sadin has joined #crystal-lang
PotatoCrisps has joined #crystal-lang
sadin has quit [Remote host closed the connection]
sadin has joined #crystal-lang
BlaXpirit has quit [Quit: Quit Konversation]
<ozra> Anyone know where map is defined. Or rather what more 'functional' higher orders are available? reduce, or even sum, etc.?
<jhass> Enumerable
<jhass> Some on Array and Hash directly
blue_deref has joined #crystal-lang
PotatoCrisps has quit [Quit: Leaving...]
bcardiff has joined #crystal-lang
fowlduck has quit [Remote host closed the connection]
fowlduck has joined #crystal-lang
<ozra> jhass: Ah, thanks!
<ozra> Is there some magic puts/p/print/whatever method available at _all_ times? I'm trying to debug spit some info in the Pointer.cr file, but none is available, and I have some trouble using IO/LibC from it for some reason...
<jhass> LibC.printf ?
<jhass> might need to bind it
<jhass> might mess up libevent though, idk
<ozra> Tried LibC.puts. I'll try that one. I don't know if the problem is caused because a literal string is allocated on heap as String, and thus creates a recursive hell... tricky..
<ozra> (I want to debug the flow of malloc, cause I can't figure out where one of the malloc calls refer to :-/ )
fowlduck has quit [Remote host closed the connection]
<ozra> Any idea on how to easiest and rawest spit something out on stderr (like static c-strings or something not involving to much ceremony?
bcardiff has quit [Quit: bcardiff]
<jhass> LibC.write(3, "foo") I guess?
<ozra> Thanks, I'll try it
<ozra> Nah. Think I'll give up on that one today, and get back to my own proj for now. Make a new jump into the compiler tomorrow or so :)
ponga has quit [Quit: Connection closed for inactivity]
fowlduck has joined #crystal-lang
havenwood has quit [Read error: Connection reset by peer]
strcmp1 has quit [Ping timeout: 246 seconds]
havenwood has joined #crystal-lang
fowlduck has quit [Remote host closed the connection]