We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems like any Expr that's returned in a @repl block is evaled before it's printed. This doesn't happen in an @example block though. Here's an MWE:
Expr
@repl
@example
```@repl 1 a = 1 :(a + 1) ``` ```@example 1 :(a + 1) ```
```julia-repl julia> a = 1 1 julia> :(a + 1) 2 ``` ```julia :(a + 1) ``` ``` :(a + 1) ```
The text was updated successfully, but these errors were encountered:
fix #923: setting ans to a expression in REPLBlocks.
c56035c
5ad5170
d2eb037
Setting ans to a expression in REPLBlocks. (#926)
8d17f68
* fix #923: setting ans to a expression in REPLBlocks.
2055205
* fix #923: setting ans to a expression in REPLBlocks. (cherry picked from commit 8d17f68)
No branches or pull requests
It seems like any
Expr
that's returned in a@repl
block is evaled before it's printed. This doesn't happen in an@example
block though. Here's an MWE:markdown input
markdown output
The text was updated successfully, but these errors were encountered: