[2016-05-08 00:29:01 UTC] I know, i was just doing some of the homework, and I spent about 30 minutes on one function not figuring out the algorithm or anything, but wondering why these freaking paranthesis didnt work even though I thought i had written it correctly... [2016-05-08 00:30:17 UTC] it turns out it has something to do with that calling a function like (head (stream-modifyer stream)) where head only expects one argument means that it's not enough to put (stream-modifier stream) in parenthesis [2016-05-08 00:30:22 UTC] but u need to put DOUBLE parenthesis [2016-05-08 00:30:26 UTC] i am like Dafuq [2016-05-08 00:31:46 UTC] or wait, nevermind, stream-modifier instead needs to return a function that you call with the paranthesis [2016-05-08 00:32:04 UTC] but basically, this is why i LOVE java