Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
@boyer-victor
boyer-victor
Follow

Block or report boyer-victor

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
boyer-victor /README.md

Grüezi!

Open Source Love


struct Engineer {
 name: String,
 role: String,
 education: String,
 spoken_languages: Vec<String>,
 interests: Vec<String>,
}
impl Engineer {
 fn new(
 name: String,
 role: String,
 education:String,
 spoken_languages: Vec<String>,
 interests: Vec<String>) -> Engineer {
 Engineer {
 name,
 role,
 education,
 spoken_languages,
 interests,
 }
 }
 fn print_info(&self) {
 println!("Name: {}", self.name);
 println!("Role: {}", self.role);
 println!("Education: {}", self.education);
 println!("I can speak: {:?}", self.spoken_languages);
 println!("My interests are: {:?}", self.interests);
 }
}
fn main() {
 let engineer = Engineer::new(
 String::from("Victor Boyer"),
 String::from("Software Engineer"),
 String::from("B.S. in Mathematics, B.S. in Quantitative Finance, M.S. in Applied Mathematics"),
 vec![String::from("English"), String::from("German")],
 vec![
 String::from("Cryptology"),
 String::from("Parallel systems"),
 String::from("GPU Acceleration/CUDA"),
 String::from("High Performance Computing")],
 );
 engineer.print_info();
}

🔧 Technologies & Tools

Popular repositories Loading

  1. otwarchive otwarchive Public

    Forked from otwcode/otwarchive

    The Organization for Transformative Works (OTW) - Archive Of Our Own (AO3) Project

    Ruby 1

  2. boyer-victor boyer-victor Public
  3. lua-intepreter lua-intepreter Public

    a rust based Lua interpter

  4. lua-interpreter lua-interpreter Public

    a rust based Lua interpreter

    Rust

  5. xv6-riscv xv6-riscv Public

    Forked from mit-pdos/xv6-riscv

    Xv6 for RISC-V

    C

  6. rust-saber rust-saber Public

    a Rust implementation of crystals-kyber

    Rust

AltStyle によって変換されたページ (->オリジナル) /