Alternatives to the classic Todo List App when learning a new language?
I'm learning Rust and want to try my hand at building a small application. I often use the tried and true todo list app to get a feel for a language since I completely understand the domain and the CRUD operations. However, ole reliable is getting boring! I know, know, that _is_ part of the point, but I could use a break. Additionally, searching for examples of simple operations in Rust brings me to other todo apps since everyone uses it as an example. I find myself just rewriting someone else's code without thinking for myself.
Does anyone here have a drop in replacement for a todo list app? Something with a very small number of CRUD operations and a very simple domain.
Thanks!