https://github.com/xpdojo/rust
Rust is a multi-paradigm, high-level, general-purpose programming language. Rust emphasizes performance, type safety, and concurrency.
https://github.com/xpdojo/rust
ownership rust
Last synced: about 1 year ago
JSON representation
Rust is a multi-paradigm, high-level, general-purpose programming language. Rust emphasizes performance, type safety, and concurrency.
- Host: GitHub
- URL: https://github.com/xpdojo/rust
- Owner: xpdojo
- License: gpl-3.0
- Created: 2021-12-11T11:02:36.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-18T18:24:15.000Z (over 3 years ago)
- Last Synced: 2025-03-31T10:51:19.382Z (about 1 year ago)
- Topics: ownership, rust
- Language: Rust
- Homepage: https://www.rust-lang.org/
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust
- [Rust](#rust)
- [Install](#install)
- [Ubuntu 22.04](#ubuntu-2204)
- [Windows](#windows)
- [Developing](#developing)
- [Unit Testing](#unit-testing)
## Install
- [Using rustup (Recommended)](https://www.rust-lang.org/tools/install)
### Ubuntu 22.04
```sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
```sh
source "$HOME/.cargo/env"
```
```sh
cargo --version
```
### Windows
- [Other ways to install rustup](https://forge.rust-lang.org/infra/other-installation-methods.html#other-ways-to-install-rustup)
## Developing
```sh
cargo init
```
```sh
cargo run
```
## Unit Testing
```sh
cargo test
```