Skip to content

1coxy57/1coxy57

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

23 Commits
Β 
Β 

Repository files navigation

πŸ‘‹ Coxy

18-year-old fullstack developer into pentesting, networking, and cybersecurity.

πŸš€ Tech Stack

Languages

  • Rust (2 months) πŸ¦€
  • Python (4+ years) 🐍
  • JavaScript (1+ year) ⚑
  • Go (Learning) 🏎️

Frameworks & Tools

  • React, Next.js
  • Flask, SQL
  • Git

πŸ“¬ Contact

Discord

πŸ”₯ GitHub Stats

struct Languages {
    languages: Vec<&'static str>,
}

impl Languages {
    fn new() -> Self {
        Self {
            languages: vec!["Rust", "Python", "JavaScript", "Go"],
        }
    }

    fn display(&self) {
        println!("πŸš€ Languages: ");
        self.languages.iter().enumerate().for_each(|(i, lang)| {
            println!("{}. {}", i + 1, lang);
        });
    }
}

fn main() {
    let prog_languages = Languages::new();
    prog_languages.display();
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published