77
Announcing Freya GUI library (marc0.hashnode.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] BB_C@programming.dev 20 points 10 months ago

Languages: Just Rust!

You got my attention.

fn app(cx: Scope) -> Element {
    let mut count = use_state(cx, || 0);

    render!(
        rect {
            height: "20%",
            width: "100%",
            background: "rgb(233, 196, 106)",
            padding: "12",
            color: "rgb(20, 33, 61)",
            label { 
                font_size: "20", 
                "Number is: {count}"
            }
        }
        rect {
            height: "80%",
            width: "100%",
            background: "rgb(168, 218, 220)",
            color: "black",
            padding: "12",
            onclick: move |_| count += 1,
            label { "Click to increase!" }
        }
    )
}

Oh, it's stringly-typed Rust.
Yeah, no thanks.

[-] HoloPengin@lemmy.world 9 points 10 months ago

Yeah why do this when rust's type system is so rich

load more comments (1 replies)
this post was submitted on 02 Sep 2023
77 points (95.3% liked)

Rust

5361 readers
1 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS