Explore >> Select a destination


You are here

www.adamtornhill.com
| | mmhaskell.com
2.2 parsecs away

Travel
| | [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
4.1 parsecs away

Travel
| | 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
1.5 parsecs away

Travel
| | A selection of functional programming concepts that I feel are helpful to all developers.
| | connorberry.com
24.3 parsecs away

Travel
| 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);...