599 B
599 B
Exercises
Random Rust exercises. Mostly typesystem-oriented.
Solutions
Presently, solutions are often provided in a non-human-readable (compacted+misformatted) form as hidden code. Those are intended for testing that the exercise is even possible to solve.
# /*
fn fix_me() { // Greyed out because the solution changes this line.
# */
# fn fixed_name() {
}
fn do_not_change_this() {
fixed_name()
}
Some exercises may not have the replaced parts greyed out:
# mod __ {
fn fix_me() {
}
# }
# fn fixed_name() {
# }
fn do_not_change_this() {
fixed_name()
}