练习

已完成

Rust 操场适用于测试小型程序、尝试新的箱和库,以及与他人共享代码。 在本练习中,我们将在操场中生成一个小程序,以便熟悉环境。

在操场中编写代码

首先,为基本程序编写一些代码。

  1. 连接 Rust 操场

  2. 在操场编辑器中输入以下代码:

    fn main(){println!(Welcome to Rust!);}
    
  3. 选择“工具”>“Rustfmt”以设置代码的格式:

    Screenshot of the Tools menu in the Rust playground.

    该工具按照官方 Rust 样式调整代码:

    Screenshot of the reformatted code in the Rust playground.

  4. 选择“工具”>“Clippy”,以检查代码中的错误。 结果显示在编辑器下:

    Screenshot of the Clippy tool results in the Rust playground.

  5. 若要修复示例代码,请在文本“欢迎使用 Rust!”两边加上引号:

    Screenshot of the fixed code in the Rust playground.

在操场中生成和运行代码

现在,我们将编译代码并运行程序。

  1. 若要选择如何在操场中生成和运行代码,请打开 UI 顶部的“运行”下拉菜单:

    Screenshot of the Run menu in the Rust playground.

  2. 选择“运行”来生成和执行示例程序。 程序输出显示在编辑器下方:

    Screenshot of the sample program output in the Rust playground.

在操场中保存和共享代码

在操场中工作时,代码将自动保存到浏览器存储中。 如果关闭浏览器窗口,可能会丢失你输入的代码。 若要使代码始终可用,可以创建可共享的 URL。

  1. 选择工具栏上的“共享”功能,以在操场中为代码创建 GitHub Gist:

    Screenshot that shows how to use the Share feature in the Rust playground.

  2. 选择“固定链接到操场”旁边的纸张图标,以获取代码的可共享 Gist。

现在,可以保存 URL 以稍后访问代码,或共享 URL 以供其他人查看代码。