struct Project {
name: &'static str,
description: &'static str,
}
fn main() {
let projects = vec![
Project { name: "Aiko", description: "Cross-plattform desktop app for Anime" },
Project { name: "Workflow", description: "Optimizing my workspace and workflows" },
Project { name: "Kernel", description: "Learning about kernel development" },
Project { name: "Embedded", description: "Diving more into embedded systems" },
];
println!("Current Projects:");
for project in projects {
println!("• {} - {}", project.name, project.description);
}
}
Pinned Loading
-
ani-together
ani-together PublicCLI tool to watch anime together with friends in a synchronized player.
Java
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.