/learning-rust

To learn Rust Language

Primary LanguageMakefile

learning-rust-lang

Create a new project

  cargo new hello-world

  ├── README.md
  └── hello-world
      ├── Cargo.toml
      └── src
          └── main.rs

  2 directories, 3 files

  fn main() {
    println!("Hello World")
  }

Rust Desktop App

sudo apt-get update 
sudo apt-get install -y musl-tools openssl-dev musl-dev libssl-dev
cargo install cargo-generate
cargo generate --git https://github.com/slint-ui/slint-rust-template --name desktop-app
cd desktop-app/

Reference Links