#[allow(dead_code)]
#[derive(Debug)]
struct Name {
person_name: String, pronunciation1: String, pronunciation2: String, bengal: String, arabic: String, japanese: String, greek: String,
}
#[derive(Debug)]
struct Website {
url: String,
}
#[derive(Debug)]
struct Person<'a> {
my_name: Name, from: (&'a str, &'a str), email: String, website: Website, blog: Website, interested_in: (&'a str, &'a str), learning: String, collaborate: String, working: String, fev_lang: (&'a str, &'a str), quote: Website,
}
fn main() {
let my_name: Name = Name {
person_name: String::from("Kazi Rifat Morshed"),
pronunciation1: String::from("/'kɑ:zi: 'ri:fæt 'mɔ:rʃɛd/"),
pronunciation2: String::from("ka-zee ree-fath mor-shed"),
bengal: String::from("কাজী রিফাত মোর্শেদ"),
arabic: String::from("كازي رفعت مرشد"),
japanese: String::from("カジ・リファット・モルシェド"),
greek: String::from("Καζί Ριφάτ Μόρσεντ"),
};
let krm: Person = Person {
my_name: my_name,
from: ("Khulna", "Bangladesh🇧🇩"),
email: String::from("kazirifat03.krm@gmail.com"),
website: Website {
url: String::from("https://kazirifatmorshed.github.io"),
},
blog: Website {
url: String::from("https://blogofkazirifatjr.blogspot.com"),
},
interested_in: ("ArchLinux", "Jōgan", ...),
learning: String::from("procrastinating"),
collaborate: String::from("doing something useful (🤔)"),
working: String::from("avoiding backlog(retake)😮💨"),
fev_lang: ("java", "rust"),
quote: Website {
url: String::from("https://github.com/KaziRifatMorshed/quotes#kazirifatmorshed"),
},
};
println!("👋 Hi, I`m Kazi Rifat Morshed 😄 \n{krm:#?}");
}
- Khulna, Bangladesh
-
21:32
(UTC +06:00) - https://kazirifatmorshed.github.io
- https://orcid.org/0000-0003-2427-8018
- @FiXi_ReULV
- https://www.t.me/FiXiReULV
- in/kazi-rifat-morshed
- https://resume.github.io/?KaziRifatMorshed
Highlights
- Pro
Pinned Loading
-
Vitamin-C-Programming-book
Vitamin-C-Programming-book PublicSupplement like C Programming guide book for beginners
CSS 1
-
Quote-of-my-day
Quote-of-my-day Public archiveThis is a GUI desktop app written in C for PERSONAL USE which will remind me a quote every day from its internally predetermined 31 quotes
C
-
beginner-friendly-VS-Code-profile
beginner-friendly-VS-Code-profile PublicBeginner-friendly VS-Code profile (Configurations) for those who are going to start programming (Supports C, C++, Python, Verilog)
-
student-database-oop-java-swing
student-database-oop-java-swing Public archiveThis repository contains the lab project, Student Database, for my OOP Lab course under Dr. Md. Anisur Rahman Sir
Java
-
WelcomeToProgramming
WelcomeToProgramming PublicLet's make this repo an experience sharing BLOG-like-thing where we will share our experiences of getting stucked or encountering errors as beginner (new programmer) (self solved or solved by frnd …
Python 3
-
Mass-Certificate-Generator-MCG-gh-Public
Mass-Certificate-Generator-MCG-gh-Public PublicMass Certificate Generator is a program to generate PDF certificates from CSV file containing participant data, useful for university clubs and programs to create certificates within no time!
If the problem persists, check the GitHub status page or contact support.


