TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

F# enters Tiobe top 20 index for the first time

36 pointsby brsalmost 14 years ago

6 comments

shawndumasalmost 14 years ago
Some F# to ponder:<p><pre><code> type LogicGate = | ON | OFF | NAND of LogicGate * LogicGate | NOT of LogicGate | AND of LogicGate * LogicGate | OR of LogicGate * LogicGate | NOR of LogicGate * LogicGate | XOR of LogicGate * LogicGate | XNOR of LogicGate * LogicGate let rec evaluate input = match input with | ON -&#62; true | OFF -&#62; false | NAND(a, b) -&#62; not ((evaluate a) &#38;&#38; (evaluate b)) | NOT(a) -&#62; (evaluate (NAND(a, a))) | AND(a, b) -&#62; (evaluate (NOT(NAND(a, b)))) | OR(a, b) -&#62; (evaluate (NAND(NOT(a), NOT(b)))) | NOR(a, b) -&#62; (evaluate (NOT(OR(a, b)))) | XOR(a, b) -&#62; (evaluate (AND(NAND(a, b), OR(a, b)))) | XNOR(a, b) -&#62; (evaluate (NOT(XOR(a, b)))) [ NAND(OFF, OFF); NAND(OFF, ON); NAND(ON, OFF); NAND(ON, ON) ] |&#62; List.map (fun x -&#62; printfn (evaluate x))</code></pre>
评论 #2860221 未加载
评论 #2860243 未加载
评论 #2860710 未加载
评论 #2860513 未加载
评论 #2860556 未加载
ltalmost 14 years ago
From the full article:<p><i>The confidence of the SuperCollider programming language has been set to 80%. The reason for this is quite funny. In order to prove that the TIOBE index can be manipulated easily, Adam Kennedy created an empty Perl library called Acme-SuperCollider-Programming. This was to boost the unknown programming language SuperCollider by adding it to Perl's popular library archive CPAN. Now 20% of all +"SuperCollider programming" come from this artificial library.</i><p>Yes, quite funny indeed, but not for the reasons they think. Just to show that Tiobe methodology is a joke. I don't understand how people take this seriously.
评论 #2859874 未加载
T-zexalmost 14 years ago
Go was a winner of 2009, RPG (OS/400) is more popular than Haskell or Erlang. Sure this is a joke.
评论 #2860239 未加载
brsalmost 14 years ago
The full article is at <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">http://www.tiobe.com/index.php/content/paperinfo/tpci/index....</a><p>I couldn't put it in the submission because of HN's dupe detection.
davidf18almost 14 years ago
I also look at the number of people in related Meetup and Linkedin groups. I'm in NYC and there are a lot of local people in various groups.
mahmudalmost 14 years ago
Scala ate their lunch.