通过例子学习Rust 前言

来源:互联网 发布:1bit存储多大的数据 编辑:程序博客网 时间:2024/05/17 07:48

Rust by Example

Rust is amodern systems programming language focusing on safety and speed. Itaccomplishes these goals by being memory safe without using garbage collection.

Rust by Example is a collection ofexamples that illustrate various Rust concepts and the standard libraries. Youcan also checkout the source code for this site.

Be sure to have Rust installed andthe docs at hand, and let's start!

Note: Rust by Example uses the latestnightly build. If you're following along on your computer, make sure to have itinstalled.

 

Rust是一种注重安全和速度的现代化系统编程语言。它实现了不使用垃圾收集器而保证内存安全的目标。

《通过例子学习Rust》阐述了关于Rust的各种概念和标准库。你还能查看本站的源代码。

确保已经安装了Rust并且手头有一份Rust文档,好了,开始吧!

注意:《通过例子学习Rust》使用了最近的每夜构造版。如果你使用现在的计算机工作,就要安装它哦。

0 0