Third-year B.Tech CSE student exploring the vast universe of programming ๐
struct Achyut {
role: String,
languages: Vec<String>,
current_focus: String,
hobbies: Vec<String>,
}
impl Achyut {
fn new() -> Self {
Achyut {
role: String::from("CSE Student"),
languages: vec![
"Python".to_string(),
"Go".to_string(),
"Rust".to_string(),
"Dart".to_string(),
"Java".to_string(),
"Kotlin".to_string()
],
current_focus: String::from("Exploring Backend Development"),
hobbies: vec![
"Reading Web Novels".to_string(),
"Gaming".to_string(),
"Coding".to_string(),
],
}
}
fn say_hi(&self) {
println!("Thanks for dropping by! Let's connect and build something amazing together!");
}
}
fn main() {
let me = Achyut::new();
me.say_hi();
}
- ๐ฑ Learning advanced backend development
- ๐ญ Working on personal projects
- ๐ฏ Looking to collaborate on open-source projects
- ๐ Read Web Novels
- ๐ฎ Gaming
- ๐ต Listen to Music
- ๐ป Code for Fun
- ๐ Learn New Technologies