formatting

This commit is contained in:
NickPapanastasiou 2015-06-16 17:19:30 -04:00
parent 4df0b5fc69
commit 5f0d8c28cc

View File

@ -219,7 +219,7 @@ void main() {
Notice how we got to build a nice Haskellian pipeline to compute num?
That's thanks to a D innovation know as Uniform Function Call Syntax.
With UFCS, we can choose whether to write a function call as a method
or free function call! Walter wrote a nice article on this [http://www.drdobbs.com/cpp/uniform-function-call-syntax/232700394](here.) In short, you can call functions whose first parameter
or free function call! Walter wrote a nice article on this [here.](http://www.drdobbs.com/cpp/uniform-function-call-syntax/232700394) In short, you can call functions whose first parameter
is of some type A on any expression of type A as a method.