Long story short: I want to create a calculator on Rust using Azul. I've found this example. However, I have no ideas on how to run the library or even how the method should be used in the main.rs
.
Any helps would be great.
Cheers.
Long story short: I want to create a calculator on Rust using Azul. I've found this example. However, I have no ideas on how to run the library or even how the method should be used in the main.rs
.
Any helps would be great.
Cheers.
It's not a library, it's an example. Basically, it's a binary with its own main
function. To run it, clone the azul
repo and run the following command:
cargo run --example calculator
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.