From 145c5a0e3499d8d99182fb381a38a9187f02866f Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Fri, 6 Dec 2024 23:10:52 +0100 Subject: [PATCH] accumulate: move important hint to instructions --- exercises/practice/accumulate/.docs/hints.md | 4 ---- exercises/practice/accumulate/.docs/instructions.append.md | 7 +++++++ 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 exercises/practice/accumulate/.docs/instructions.append.md diff --git a/exercises/practice/accumulate/.docs/hints.md b/exercises/practice/accumulate/.docs/hints.md index 082f60c16..6a6ecdf29 100644 --- a/exercises/practice/accumulate/.docs/hints.md +++ b/exercises/practice/accumulate/.docs/hints.md @@ -8,7 +8,3 @@ It may help to look at the Fn\* traits: Help with passing a closure into a function may be found in the ["closures as input parameters" section](https://doc.rust-lang.org/stable/rust-by-example/fn/closures/input_parameters.html) of [Rust by Example](https://doc.rust-lang.org/stable/rust-by-example/). - -The tests for this exercise will cause compile time errors, -if your function signature does not fit them, even when they're not run. -You may want to comment some tests out and generalize your solution piece by piece. diff --git a/exercises/practice/accumulate/.docs/instructions.append.md b/exercises/practice/accumulate/.docs/instructions.append.md new file mode 100644 index 000000000..9580883fa --- /dev/null +++ b/exercises/practice/accumulate/.docs/instructions.append.md @@ -0,0 +1,7 @@ +# Introductions append + +## Workflow + +The tests for this exercise will cause compile time errors, +if your function signature does not fit them, even when they're not run. +You may want to comment some tests out and generalize your solution piece by piece.