|
You are here |
www.adamtornhill.com | ||
| | | | |
mmhaskell.com
|
|
| | | | | [AI summary] This article compares Functional Programming and Object Oriented Programming paradigms, discussing their key differences, strengths, weaknesses, and how Haskell fits into the functional paradigm. | |
| | | | |
hypirion.com
|
|
| | | | | When generics comes out, here's a possible way to use it for typed HTTP servers in Go. As a bonus, there's a short "rant" about how the implementation causes functional programming to be hard. | |
| | | | |
henko.net
|
|
| | | | | A selection of functional programming concepts that I feel are helpful to all developers. | |
| | | | |
connorberry.com
|
|
| | | Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);... | ||