summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Kunc <tfpk@users.noreply.github.com>2023-03-25 20:00:28 +1100
committerGitHub <noreply@github.com>2023-03-25 20:00:28 +1100
commitd5449c992e8e7633ff929737fb6df4daa5413166 (patch)
tree0e2eb13b12efa897b5899d3be75177485115faf6
parent9acefe8b3a2bed6e23dc31e9c1d5e9c5f6ab7596 (diff)
feat(lifetimekata): Add info about Lifetimekata project
-rw-r--r--exercises/lifetimes/README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/exercises/lifetimes/README.md b/exercises/lifetimes/README.md
index 72befb3..dc7ca79 100644
--- a/exercises/lifetimes/README.md
+++ b/exercises/lifetimes/README.md
@@ -11,6 +11,11 @@ be referenced outside. Lifetimes mean that calling code of e.g. functions
can be checked to make sure their arguments are valid. Lifetimes are
restrictive of their callers.
+If you'd like to learn more about lifetime annotations, the
+[lifetimekata](https://tfpk.github.io/lifetimekata/) project
+has a similar style of exercises to Rustlings, but is all about
+learning to write lifetime annotations.
+
## Further information
- [Validating References with Lifetimes](https://doc.rust-lang.org/book/ch10-03-lifetime-syntax.html)