Skip to content
View boyer-victor's full-sized avatar
💭
building tomorrow's unmaintainable code today
💭
building tomorrow's unmaintainable code today

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. boyer-victor boyer-victor Public

  2. lua-intepreter lua-intepreter Public

    a rust based Lua interpter

  3. lua-interpreter lua-interpreter Public

    a rust based Lua interpreter

    Rust

  4. otwarchive otwarchive Public

    Forked from otwcode/otwarchive

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

    Ruby

  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