Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/iamdipankarpaul/hello_rust


https://github.com/iamdipankarpaul/hello_rust

Last synced: 16 days ago
JSON representation

Awesome Lists containing this project

README

        

# Starting with Rust

A simple "Hello World" example.

```rust
// Now create a new project
$ cargo new hello_rust
// Go to the project directory
$ cd hello_rust
// Run the project
$ cargo run
```