Featured image of post Getting Started with Rust

Getting Started with Rust

Introduction

Rust is a relatively new programming language that allows you to write fast and memory-efficient modules using modern syntax. It supports multi-platform and is also used in the world of WebAssembly and embedded systems. Notably, it has been adopted by Firefox, Dropbox, and Cloudflare.

It is also gaining attention as an alternative to C++.

Installation

Install Rust

Installation methods for each platform are published on the site above.

First Program

Save the following program as main.rs.

1
2
3
fn main() {
    println!("Hello, world!");
}

When you run rustc main.rs from the command prompt or terminal, it will be compiled, and running ./main (main.exe on Windows) will output Hello, world!.

Japanese Documentation

The Rust Programming Language Japanese Version

The explanations necessary for learning Rust are gathered in the link above (Japanese translation version). It is so comprehensive that there is no need to purchase a Rust textbook.

If you want to try it on the Web

If you want to try it on the Web without installing a compiler, you can use The Rust Playground. When you enter the code and press the “Run” button, it will be compiled and executed on the Web.

Licensed under CC BY-NC-SA 4.0
comments powered by Disqus