Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamdipankarpaul/hello_rust
https://github.com/iamdipankarpaul/hello_rust
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iamdipankarpaul/hello_rust
- Owner: iamdipankarpaul
- Created: 2024-01-15T16:22:38.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-15T16:22:42.000Z (about 1 year ago)
- Last Synced: 2024-11-11T14:10:48.102Z (3 months ago)
- Language: Rust
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```