TIL: in Ruby if you pass a hash to p or puts like this: p { :a => 1 } it doesn't print anything, because it interprets the brackets as a block (which it quietly ignores) and not as a hash parameter… ΰ² _ΰ²  #rubylang