Skip to content
View 0xDot-mal's full-sized avatar

Block or report 0xDot-mal

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
0xDot-mal/README.md

✨Crxmson✨

const LANGUAGES: [&str; 5] = ["Rust", "C++", "JavaScript", "Python", "C"];

struct Skills {
    programming: Vec<String>,
    design: bool,
    problem_solving: bool,
}

impl Skills {
    fn new() -> Self {
        Skills {
            programming: Vec::new(),
            design: false,
            problem_solving: true, // cap.
        }
    }

    fn add_language(&mut self, lang: &str) {
        self.programming.push(lang.to_string());
    }
}

fn main() {
    let mut my_skills = Skills::new();

    for lang in LANGUAGES.iter() {
        my_skills.add_language(lang);
    }


    println!("My programming skills:");
    for lang in my_skills.programming.iter() {
        println!("  - {}", lang);
    }

  
    macro_rules! rahhh {
        () => {
            println!("This is a complex operation!");
        };
    }

    rahhh!();
}

youtube subscribers youtube views followers total stars


🛠️Tools I used somewhere🛠️

👨‍💻 Programming Languages include👨‍💻

MIPS Assembly Bash C C++ C# CSS Google Apps Script HTML JavaScript

🗄️Database and back-end etc..🗄️

Node.js Python SQL GitHub Pages MongoDB MySQL SQLite

💻 Software and Tools

Repl.it Adobe Android Audacity Bitwarden Dark Reader Discord Git GitHub Desktop Google Sheets OBS Studio SonarLint Stack Overflow Visual Studio Code

🪟Operation system🐧

Windows 11 Windows 10


📊My Stats📊

Crxmson's github stats Crxmson's github stats

⚒️Top Repositories⚒️






🌐My Website🌐 & Bio

Pinned Loading

  1. grass-cli grass-cli Public

    A mini project that im gonna update as much as i get good in cpp.

    C++ 1

  2. first-Rust-Code first-Rust-Code Public

    yay!

    Rust