exercises/src/overview.md
parrrate 8b02c46755
All checks were successful
buildbot/mdbook test Build done.
remove live warning
2024-12-06 21:37:17 +00:00

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()
}