From 70eb8215160a47becbead3c215da50b31db957cf Mon Sep 17 00:00:00 2001 From: keemy Date: Fri, 28 May 2021 02:17:04 -0700 Subject: [PATCH] docs: Update tutorial-3 conclusion (#336) --- docs/src/tutorials/tutorial-3.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/src/tutorials/tutorial-3.md b/docs/src/tutorials/tutorial-3.md index e060e92bc..898aa3216 100644 --- a/docs/src/tutorials/tutorial-3.md +++ b/docs/src/tutorials/tutorial-3.md @@ -71,6 +71,9 @@ retrieve the return value. In future work, Anchor should do this transparently. ## Conclusion -That's it for the introductory tutorials for Anchor. For more, see the `examples/` directory in the -[repository](https://github.com/project-serum/anchor). For feature requests or bugs, GitHub issues -are appreciated. For direct questions or support, join the [Serum Discord](https://discord.gg/rg5ZZPmmTm). +Now that you can have your programs call other programs, you should be able to access all the work being done by other developers in your own applications! + +## Next Steps + +Up until now, we've treated programs on Solana as stateless. In the next tutorial we will learn how to add a global state to our program. +