>>1-13 assigned banned status for miscellaneous reasons.
Name:
Anonymous2008-12-18 0:32
Penalty for using tripcode.
Name:
Anonymous2008-12-18 0:59
>>14 Penalty for conducting moderation activities outside of assigned boards. >>15 Penalty for not recognizing a well-known moderator.
Name:
Thread Closer2008-12-18 0:59
THIS THREAD IS OFFICIALLY CLOSED UNTIL 7AM PST DECEMBER 18TH. PLEASE TAKE THIS TIME TO REST AND REVITALIZE YOURSELF.
Name:
Anonymous2008-12-18 1:05
Consider this thread's anus"HAXED."
Name:
Anonymous2008-12-18 1:07
I'm learning F# at the moment and it really is the most fun I've had since learning Haskell.
Here's F# fibonnaci sequence
let newfibs = (1I,1I) |> Seq.unfold (fun (a,b) -> Some (a, (b, (a+b))))
then to get the n'th fib:
let myfib = newfibs |> Seq.nth n
Name:
Anonymous2008-12-18 1:12
forgot my code tags let newfibs = (1I,1I) |> Seq.unfold (fun (a,b) -> Some (a, (b, (a+b)))) let myfib = newfibs |> Seq.nth n
Name:
Anonymous2008-12-18 1:16
Too bad Microsoft will undoubtedly fuck F# up somehow. Oh wait, they already did by making it into some .NET wankery. Hahaha! What kind of retarded Micro$oft monkey will have the patience to learn a functional programming language? That's right. None of them. F# will die a lonely death unless they release source code for a UNIX-compatible F# compiler.
>>21
What are you on about? Microsoft are investing a lot into making F# an official .NET language; in fact it's going to be featured in the next Visual Studio (2010). http://blogs.msdn.com/dsyme/
>>25
Are you trolling me right now? Before this goes on any further, I'm going to end it. Your posts are nothing but the superficial utterings of a sub-par troll. Did you even visit the links I outlined in >>23? It seems you've jumped on the Anti-MS bandwagon, because it's a shame since you really are missing out on great language. But that's fine, look, you're entitled to your opinion, and I'm not going to persuade you to be more open-minded.
I wish you good day, sir.
Name:
Anonymous2008-12-18 1:35
>>28
Yeah, and I bet you run Micro$oft Windows Vista (TM) too, faggot.
Name:
Anonymous2008-12-18 1:38
>>29
XP Service Pack 3, actually. I also have FreeBSD 7.0 and Ubuntu 8.10 installed with Sun Virtualbox. But why are you posting? I'm not trolling you, you're not going to troll me. This is pointless. Why are you dedicating your life to irritation and rage? Can't we all just get along
Name:
Anonymous2008-12-18 1:42
>>30
I'm a warrior sent my Gerry J. Sussman of the SICP. If you fuck with me, you fuck with Gerry. There is no Vista in Heaven. Repent. Traitor.
Name:
Anonymous2008-12-18 2:12
recursively reversing a list
let rec reverselist l =
match l with
| [] -> []
| car :: [] -> [car]
| car :: cdr -> List.append (reverselist cdr) [car]
reversing a list with tail recursion
let rec tailrev l =
let rec loop list acc =
match list with
| car :: cdr -> loop cdr (car :: acc)
| _ -> acc
loop l []
Name:
Anonymous2008-12-18 2:31
>>32
You don't need the rec in let rec tailrev l =