An open API service indexing awesome lists of open source software.

https://github.com/jaytwolab/hello-rust

Hello, world! boilerplate code
https://github.com/jaytwolab/hello-rust

Last synced: 2 months ago
JSON representation

Hello, world! boilerplate code

Awesome Lists containing this project

README

        

# hello-rust

- Hello, rust!

- ```.gitignore``` for rust is updated.

## Hello World

- Create new project

```
cargo new helloworld
```

- Build project (default debug build)

```
cd helloworld
cargo build
```

- Build project using 'Release build'

```
cargo build --release
```

- Run project

- run default build(debug build)

```
cargo run
```

- run release build

```
cargo run --release
```