struct Attributes;
impl Attributes {
fn contact() -> (String, String, String) {
let discord = String::from("Bond#8149");
let email = String::from("[email protected]")
(discord, email)
}
fn life() -> (Vec<String>, u32) {
let langs = vec![
String::from("Chinese"),
String::from("English"),
];
let age = 24;
(langs, age)
}
fn coding() -> (Vec<(String, Vec<String>)>, Vec<String>, Vec<String>) {
let mut langs = Vec::new();
langs.push((String::from("expert"), vec![String::from("rust"), String::from("go"), String::from("move")]));
langs.push((String::from("intermediate"), vec![String::from("typescript"), String::from("python")]));
langs.push((
String::from("learning"),
vec![
String::from("solidity"),
String::from("c++"),
String::from("c"),
],
));
let specialities = vec![
String::from("smart contract engineering"),
String::from("fullstack engineering"),
];
let environnement = vec![String::from("vscode")];
(langs, specialities, environnement)
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
ccbond/ccbond
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published