タグ

ブックマーク / www.rust-lang.org (10)

  • Getting started

    Quickly set up a Rust development environment and write a small app! You can try Rust online in the Rust Playground without installing anything on your computer. Try Rust without installing Rustup: the Rust installer and version management tool The primary way that folks install Rust is through a tool called Rustup, which is a Rust installer and version management tool. It looks like you’re runnin

    Getting started
  • Learn Rust

    Affectionately nicknamed “the book,” The Rust Programming Language will give you an overview of the language from first principles. You’ll build a few projects along the way, and by the end, you’ll have a solid grasp of the language. Alternatively, Rustlings guides you through downloading and setting up the Rust toolchain, and teaches you the basics of reading and writing Rust syntax, on the comma

    Learn Rust
  • ガバナンス

    Rustにおける主な決定事項はどれも、Request for Comments (RFC)の一つとして始まります。 提案されたRFCについて議論し、トレードオフについて共通理解を得るよう努めることが求められます。 時には労力を要しますが、このコミュニティによる熟議こそがRustの質を保つ秘訣なのです。 もっと読む Leadership council Charged with the success of the Rust Project as whole, consisting of representatives from top-level teams メンバー&連絡先

    ガバナンス
  • ツール

    コマンドラインでコードを書くことが好みでも、リッチなグラフィカルエディタが好みでも、あなたの選ぶエディタにはRust拡張機能があるでしょう。また、rust-analyzerを使って自分だけの環境を作ることも可能です。

    ツール
  • Rustを学ぶ

    「the book」としても親しまれているプログラミング言語Rustは、この言語の概観を基原理から説明します。読み進める中で複数のプロジェクトを構築し、読み終わるまでにはこの言語の確かな理解が得られます。 あるいはRustlingsなら、コマンドライン上で、Rustのツールチェインのダウンロードとセットアップ方法を確認しながら、Rustの構文の基的な読み書きを学ぶことができます。Rust by Exampleをあなたの環境で動かすようなものです。

    Rustを学ぶ
  • Rust をインストール

    あなたはmacOSLinuxまたはその他のUnix系OSを使用しているようです。RustupをダウンロードしてRustをインストールするには、ターミナルで以下のコマンドを実行してください。それから画面に表示される指示に従ってください。Windowsユーザである場合には、「その他のインストール方法」を参照してください。 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh あなたはWindowsを使用しているようです。Rustを使い始めるには、インストーラをダウンロードして実行し、画面に表示される指示に従ってください。場合によっては、Visual Studio C++ Build toolsをインストールする必要があります。もしWindowsユーザでない場合には、「その他のインストール方法」を参照してください。

    Rust をインストール
  • はじめに

    Rust Playgroundではコンピュータに何もインストールすることなく、オンラインでRustを試すことができます。 インストールせずにRustを試す Rustup:Rustインストーラおよびバージョン管理ツール 一般によく採用されるRustのインストール方法は、Rustupというツールを介するものです。このツールはRustインストーラとバージョン管理ツールを兼ねたものです。 あなたはmacOSLinuxまたはその他のUnix系OSを使用しているようです。RustupをダウンロードしてRustをインストールするには、ターミナルで以下のコマンドを実行してください。それから画面に表示される指示に従ってください。Windowsユーザである場合には、「その他のインストール方法」を参照してください。 curl --proto '=https' --tlsv1.2 -sSf https://sh

    はじめに
  • Rustプログラミング言語

    パフォーマンス Rustは非常に高速でメモリ効率が高くランタイムやガベージコレクタがないため、パフォーマンス重視のサービスを実装できますし、組込み機器上で実行したり他の言語との調和も簡単にできます。 信頼性 Rustの豊かな型システムと所有権モデルによりメモリ安全性とスレッド安全性が保証されます。さらに様々な種類のバグをコンパイル時に排除することが可能です。 生産性 Rustには優れたドキュメント、有用なエラーメッセージを備えた使いやすいコンパイラ、および統合されたパッケージマネージャとビルドツール、多数のエディタに対応するスマートな自動補完と型検査機能、自動フォーマッタといった一流のツール群が数多く揃っています。

    Rustプログラミング言語
  • Install Rust

    It looks like you’re running macOS, Linux, or another Unix-like OS. To download Rustup and install Rust, run the following in your terminal, then follow the on-screen instructions. See "Other Installation Methods" if you are on Windows. curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh It looks like you’re running Windows. To start using Rust, download the installer, then run the prog

    Install Rust
  • The Rust Programming Language

    A language empowering everyone to build reliable and efficient software. Performance Rust is blazingly fast and memory-efficient: with no runtime or garbage collector, it can power performance-critical services, run on embedded devices, and easily integrate with other languages. Reliability Rust’s rich type system and ownership model guarantee memory-safety and thread-safety — enabling you to elim

    The Rust Programming Language
  • 1