Name: (Your legal name and a nickname you prefer to be addressed with)
Location: (What city and country you reside in?)
Education: (If you are a full-time student or a recent graduate, please attach your academic transcript and CC to [email protected] p.s. We do not look at your grades, but are more interested in your exposure to various computer science topics)
Email: (Your email address)
GitHub: (Your GitHub profile. Make sure it has a nice, long self-intro! p.s. take https://github.com/tyt2y3/ as reference if you wish)
Discord: (Your Discord username)
Please write a design document on the proposed project (with your own imagination, consideration and insights)
Please provide a list of tasks (and subtasks) for the proposed projects in sequence and estimate how long (in days) each task might take. Remember to highlight important milestone and deliverables.
Hint: testing is essential
What are other relevant projects have you worked on (outside of coursework) and what knowledge have you gain from it?
enum Animal {
Cat,
Ferris,
Starfish,
}
impl Animal {
fn speak(&self) {
match self {
Animal::Cat => println!("Meow"),
Animal::Ferris => println!("Hello fellow Rustaceans!"),
Animal::Starfish => println!("Glub"),
}
}
}
Hint: You might want to define a trait named Speech
.
~ Thank you so much for taking the time to fill this form :) ~