We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9beb442 commit c6aed04Copy full SHA for c6aed04
examples/mini_repl.rs
@@ -41,6 +41,7 @@ fn main() -> PyResult<()> {
41
.map_err(|err| vm.new_syntax_error(&err))?;
42
43
// this line also automatically prints the output
44
+ // (note that this is only the case when compile::Mode::Single is passed to vm.compile)
45
let output = vm.run_code_obj(code_obj, scope.clone())?;
46
47
// store the last value in the "last" variable
0 commit comments