diff options
author | NickPapanastasiou <nickpap9411@gmail.com> | 2015-06-16 17:19:30 -0400 |
---|---|---|
committer | NickPapanastasiou <nickpap9411@gmail.com> | 2015-06-16 17:19:30 -0400 |
commit | 5f0d8c28cc8c8f33db45c82a79699a9c1ff6fbbc (patch) | |
tree | f3a6111ad5bb18fdb897426b7aeaf5158a2be53b /d.html.markdown | |
parent | 4df0b5fc697ededd3d1e733214bd94033f4cba53 (diff) |
formatting
Diffstat (limited to 'd.html.markdown')
-rw-r--r-- | d.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/d.html.markdown b/d.html.markdown index 4ccf65d3..7356174d 100644 --- a/d.html.markdown +++ b/d.html.markdown @@ -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. |