Skip to content
View boyer-victor's full-sized avatar

Block or report boyer-victor

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