エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
When trying out Crystal it’s tempting, and very fun, to write small benchmarks to see how the lan... When trying out Crystal it’s tempting, and very fun, to write small benchmarks to see how the language’s performance compares to other languages. Because of its syntax, comparing with Ruby is usually the simplest thing to do. Many times we can even use the same code. Let’s compare the fibonacci function: # fib.cr def fib(n) if n <= 1 1 else fib(n - 1) + fib(n - 2) end end time = Time.now puts fib(