cross-posted from: https://diode.zone/videos/watch/9766d1f1-6018-48ec-ad67-e971758f8a3a

Going through some exercises on basic Rust syntax and ownership.

Links:

Rust 101 is a series of videos explaining how to write programs in Rust. The course materials for this series are developed by tweede golf. You can find more information at https://github.com/tweedegolf/101-rs and you can sponsor the work at https://github.com/sponsors/tweedegolf . They are released under the Creative Commons Attribution Share Alike 4.0 International license.

This series of videos is copyright 2023 Andy Balaam and the tweede golf contributors and is released under the Creative Commons Attribution Share Alike 4.0 International license.


These videos are roughly on track with the Reading Club apparently, so this video belongs here this week, I think.

  • @JayjaderM
    link
    English
    4
    edit-2
    5 months ago

    Shouldn’t we be able to do something like

    let bar : [f32; 5] = [Default::default(); 5];
    

    ?

    I’m on mobile and too lazy to try whipping up a rust playground example to test this out myself.

    • @deur@feddit.nl
      link
      fedilink
      English
      3
      edit-2
      5 months ago

      I’ll do you one better!

      let foo: [u8; 10] = Default::default();
      

      (pretty sure the above only works reliably after they finally were able to derive traits on n-sized arrays but that’s been in for a while now)

      And as you suggested:

      let foo: [u8; 10] = [Default::default(); 10];