Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ probabilistic-pca: tutorials/11-probabilistic-pca
gplvm: tutorials/12-gplvm
seasonal-time-series: tutorials/13-seasonal-time-series
contexts: tutorials/16-contexts
miniature: tutorial/14-minituring
minituring: tutorial/14-minituring
contributing-guide: tutorials/docs-01-contributing-guide
using-turing-abstractmcmc: tutorials/docs-04-for-developers-abstractmc-turing
using-turing-compiler: tutorials/docs-05-for-developers-compiler
Expand Down
4 changes: 2 additions & 2 deletions tutorials/16-contexts/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ using Pkg;
Pkg.instantiate();
```

In the [Mini Turing](../14-minituring) tutorial we developed a miniature version of the Turing language, to illustrate its core design. A passing mention was made of contexts. In this tutorial we develop that aspect of our mini Turing language further to demonstrate how and why contexts are an important part of Turing's design.
In the [Mini Turing]({{< meta minituring >}}) tutorial we developed a miniature version of the Turing language, to illustrate its core design. A passing mention was made of contexts. In this tutorial we develop that aspect of our mini Turing language further to demonstrate how and why contexts are an important part of Turing's design.

# Mini Turing expanded, now with more contexts

If you haven't read [Mini Turing](../14-minituring) yet, you should do that first. We start by repeating verbatim much of the code from there. Define the type for holding values for variables:
If you haven't read [Mini Turing]({{< meta minituring >}}t) yet, you should do that first. We start by repeating verbatim much of the code from there. Define the type for holding values for variables:

```{julia}
import MacroTools, Random, AbstractMCMC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using Pkg;
Pkg.instantiate();
```

Prerequisite: [Interface guide](../{{<meta using-turing-interface>}}).
Prerequisite: [Interface guide]({{<meta using-turing-interface>}}).

## Introduction

Expand Down
Loading