はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    新内閣発足

『Learn X in Y Minutes: Scenic Programming Language Tours』

  • 人気
  • 新着
  • すべて
  • Learn Julia in Y Minutes

    3 users

    learnxinyminutes.com

    Julia は科学技術計算向けに作られた、同図像性を持った(homoiconic) プログラミング言語です。 マクロによる同図像性や第一級関数などの抽象化機能の恩恵を受けつつ、低階層をも扱えますが、 それでいてPython 並に学習しやすく、使いやすい言語となっています。 この文章は、Julia の2013年10月18日現在の開発バージョンを元にしています。 # ハッシュ(シャープ)記号から改行までは単一行コメントとなります。 #= 複数行コメントは、 '#=' と '=#' とで囲むことで行えます。 #= 入れ子構造にすることもできます。 =# =# #################################################### ## 1. 基本的な型と演算子 ###################################################

    • テクノロジー
    • 2018/02/27 02:51
    • Learn Kotlin in Y Minutes

      3 users

      learnxinyminutes.com

      Kotlin is a statically typed programming language for the JVM, Android and the browser. It is 100% interoperable with Java. Read more here. // Single-line comments start with // /* Multi-line comments look like this. */ // The "package" keyword works in the same way as in Java. package com.learnxinyminutes.kotlin /* The entry point to a Kotlin program is a function named "main". The function is pa

      • テクノロジー
      • 2017/05/19 12:37
      • Learn Raku in Y Minutes

        4 users

        learnxinyminutes.com

        Raku (formerly Perl 6) is a highly capable, feature-rich programming language made for at least the next hundred years. The primary Raku compiler is called Rakudo, which runs on the JVM and the MoarVM. Meta-note: Although the pound sign (#) is used for sentences and notes, Pod-styled comments (more below about them) are used whenever it's convenient. # OUTPUT: is used to represent the output of a

        • テクノロジー
        • 2015/10/07 11:25
        • Learn Lua in Y Minutes

          4 users

          learnxinyminutes.com

          -- Two dashes start a one-line comment. --[[ Adding two ['s and ]'s makes it a multi-line comment. --]] ---------------------------------------------------- -- 1. Variables and flow control. ---------------------------------------------------- num = 42 -- Numbers can be integer or floating point. s = 'walternate' -- Immutable strings like Python. t = "double-quotes are also fine" u = [[ Double bra

          • テクノロジー
          • 2015/04/06 22:03
          • lua
          • 開発
          • Learn Julia in Y Minutes

            4 users

            learnxinyminutes.com

            Julia is a new homoiconic functional language focused on technical computing. While having the full power of homoiconic macros, first-class functions, and low-level control, Julia is as easy to learn and use as Python. This is based on Julia version 1.0.0. # Single line comments start with a hash (pound) symbol. #= Multiline comments can be written by putting '#=' before the text and '=#' after th

            • テクノロジー
            • 2014/02/15 21:45
            • julia
            • Learn Elixir in Y Minutes

              4 users

              learnxinyminutes.com

              Elixir is a modern functional language built on top of the Erlang VM. It's fully compatible with Erlang, but features a more standard syntax and many more features. # Single line comments start with a number symbol. # There's no multi-line comment, # but you can stack multiple comments. # To use the Elixir shell use the `iex` command. # Compile your modules with the `elixirc` command. # Both shoul

              • テクノロジー
              • 2013/10/18 11:09
              • elixir
              • Learn Go in Y Minutes

                16 users

                learnxinyminutes.com

                Go was created out of the need to get work done. It's not the latest trend in programming language theory, but it is a way to solve real-world problems. It draws concepts from imperative languages with static typing. It's fast to compile and fast to execute, it adds easy-to-understand concurrency because multi-core CPUs are now common, and it's used successfully in large codebases (~100 million lo

                • テクノロジー
                • 2013/09/04 19:43
                • golang
                • go
                • Learn LiveScript in Y Minutes

                  3 users

                  learnxinyminutes.com

                  LiveScript is a functional compile-to-JavaScript language which shares most of the underlying semantics with its host language. Nice additions come with currying, function composition, pattern matching and lots of other goodies heavily borrowed from languages like Haskell, F# and Scala. LiveScript is a fork of Coco, which is itself a fork of CoffeeScript. # Just like its CoffeeScript cousin, LiveS

                  • テクノロジー
                  • 2013/08/08 00:53
                  • javascript
                  • Learn Clojure in Y Minutes

                    4 users

                    learnxinyminutes.com

                    Clojure is a Lisp family language developed for the Java Virtual Machine. It has a much stronger emphasis on pure functional programming than Common Lisp, but includes several STM utilities to handle state as it comes up. This combination allows it to handle concurrent processing very simply, and often automatically. (You need a version of Clojure 1.2 or newer) ; Comments start with semicolons. ;

                    • テクノロジー
                    • 2013/07/28 14:05
                    • clojure
                    • あとで読む
                    • Learn JavaScript in Y Minutes

                      3 users

                      learnxinyminutes.com

                      JavaScript was created by Netscape's Brendan Eich in 1995. It was originally intended as a simpler scripting language for websites, complementing the use of Java for more complex web applications, but its tight integration with Web pages and built-in support in browsers has caused it to become far more common than Java in web frontends. JavaScript isn't just limited to web browsers, though: Node.j

                      • テクノロジー
                      • 2013/07/14 23:41
                      • JavaScript
                      • *あとで
                      • Learn Ruby in Y Minutes

                        3 users

                        learnxinyminutes.com

                        # This is a comment =begin This is a multi-line comment. The beginning line must start with "=begin" and the ending line must start with "=end". You can do this, or start each line in a multi-line comment with the # character. =end # In Ruby, (almost) everything is an object. # This includes numbers... 3.class #=> Integer # ...and strings... "Hello".class #=> String # ...and even methods! "Hello".

                        • テクノロジー
                        • 2013/07/14 23:41
                        • ruby
                        • *あとで
                        • Learn Haskell in Y Minutes

                          3 users

                          learnxinyminutes.com

                          Haskell was designed as a practical, purely functional programming language. It's famous for its monads and its type system, but I keep coming back to it because of its elegance. Haskell makes coding a real joy for me. -- Single line comments start with two dashes. {- Multiline comments can be enclosed in a block like this. -} ---------------------------------------------------- -- 1. Primitive Da

                          • テクノロジー
                          • 2013/07/02 14:26
                          • Haskell
                          • Learn X in Y Minutes: Scenic Programming Language Tours

                            139 users

                            learnxinyminutes.com

                            Take a whirlwind tour of your next favorite language. Community-driven! Languages Translations

                            • テクノロジー
                            • 2013/06/30 23:58
                            • programming
                            • プログラミング
                            • language
                            • tutorial
                            • まとめ
                            • study
                            • *プログラム
                            • *プログラミング
                            • reference
                            • 学習
                            • Learn Python in Y Minutes

                              5 users

                              learnxinyminutes.com

                              Python was created by Guido van Rossum in the early 90s. It is now one of the most popular languages in existence. I fell in love with Python for its syntactic clarity. It's basically executable pseudocode. # Single line comments start with a number symbol. """ Multiline strings can be written using three "s, and are often used as documentation. """ ################################################

                              • テクノロジー
                              • 2013/06/30 19:55
                              • python

                              このページはまだ
                              ブックマークされていません

                              このページを最初にブックマークしてみませんか?

                              『Learn X in Y Minutes: Scenic Programming Language Tours』の新着エントリーを見る

                              キーボードショートカット一覧

                              j次のブックマーク

                              k前のブックマーク

                              lあとで読む

                              eコメント一覧を開く

                              oページを開く

                              はてなブックマーク

                              • 総合
                              • 一般
                              • 世の中
                              • 政治と経済
                              • 暮らし
                              • 学び
                              • テクノロジー
                              • エンタメ
                              • アニメとゲーム
                              • おもしろ
                              • アプリ・拡張機能
                              • 開発ブログ
                              • ヘルプ
                              • お問い合わせ
                              • ガイドライン
                              • 利用規約
                              • プライバシーポリシー
                              • 利用者情報の外部送信について
                              • ガイドライン
                              • 利用規約
                              • プライバシーポリシー
                              • 利用者情報の外部送信について

                              公式Twitter

                              • 公式アカウント
                              • ホットエントリー

                              はてなのサービス

                              • はてなブログ
                              • はてなブログPro
                              • 人力検索はてな
                              • はてなブログ タグ
                              • はてなニュース
                              • ソレドコ
                              • App Storeからダウンロード
                              • Google Playで手に入れよう
                              Copyright © 2005-2025 Hatena. All Rights Reserved.
                              設定を変更しましたx