fn main() {
    struct SomeData(
        i32,
        f32,
        char,
        [u8; 5],
    );
    
    let data = SomeData(60,183.46,'Q',[1,2,3,4,5
    ]);
    
    println!("{} {} {} {}",data.3[3],data.0,data.1,data.2);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: