jdh30


Comments:

.NET Languages

posted by jdh30jdh30(245) 5 years, 2 months ago 0

Neither of these lists seems to include the F# programming language from Microsoft.

Reply

.NET Languages

posted by jdh30jdh30(245) 5 years, 2 months ago 0

Spoke too soon - they've listed F# under C for Caml. Along the same lines, C# should be listed under Algol...

Reply

Anonymous Recursion

posted by jdh30jdh30(245) 5 years, 2 months ago 0

Just use F#. :-)

Reply

Continuation Passing Style & Anonymous Methods

posted by jdh30jdh30(245) 5 years, 2 months ago 0

Just use F#. :-)

Reply

Why Can't Programmers.. Program?

posted by jdh30jdh30(245) 5 years, 2 months ago 0

I find it more disturbing that so many people are interviewing and don't know the answers to the questions they're asking!

PS: In F#:

let f i n s = if i%n=0 then s else ""
Seq.iter (fun i -> printf "%d %s %s\n" i (f i 3 "Fizz") (f i 5 "Buzz")) {1 .. 100}

Reply

Only iterating over the objects you want in a foreach loop

posted by jdh30jdh30(245) 5 years, 2 months ago 0

Learn F#. Use pattern matching.

Reply

Articles, example programs and tutorial videos on F#

posted by jdh30jdh30(245) 5 years, 1 month ago 0

There is one free article and more coming soon!

Reply