Skip to content

ByteDice/ByteDice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

Hello, my name is Byte Dice!

Award winning spaghetti chef
Award winning insect breeder
(In code, also a joke)

About me

struct Person<'a> {
    name:          &'a str,
    pronouns:      &'a str,
    languages: Vec<&'a str>,
    websites:  Vec<&'a str>,
}

fn main() {
  let me = Person {
    name: "Byte Dice",
    pronouns: "up to your imagination (any)",
    languages: vec![
      "Rust",
      "HTML / CSS / JS",
      "Kotlin",
      "Python",
      "C#"
    ],
    websites: vec!["https://ByteDice.net"]
  };

  // unoptimal but more readable
  println!("Hello, I'm {}!", me.name);
  println!("My pronouns are {}.", me.pronouns);
  println!("I code in {}.", me.languages.join(", "));
  println!("Check out my websites:\n{}", me.websites.join("\n"));
}

Other things about me:

  • Apparently people think I'm a femboy
  • I really, really love Rust
  • ...I know why people think I'm a femboy

About

Config files for my GitHub profile.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors