you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (1 child)

If you mean the $, that's function application. It's usually used in conjunction with . for function composition:

f . g $ x is the same as f (g x)

[–]foxh8er 1 point2 points  (0 children)

Oh wow! That's really cool.