TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

F# enters Tiobe top 20 index for the first time

36 点作者 brs将近 14 年前

6 条评论

shawndumas将近 14 年前
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 未加载
lt将近 14 年前
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-zex将近 14 年前
Go was a winner of 2009, RPG (OS/400) is more popular than Haskell or Erlang. Sure this is a joke.
评论 #2860239 未加载
brs将近 14 年前
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.
davidf18将近 14 年前
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.
mahmud将近 14 年前
Scala ate their lunch.