Nothing
bt <- reticulate::import_builtins()
bt$print("Hello world")
## Hello world
In jupyter_compat = FALSE
: we should only see the output of both
expressions.
print(1)
## 1
print(2)
## 2
In jupyter_compat = TRUE
: we should only see the output of both
expressions.
print(1)
## 1
print(2)
## 2
In jupyter_compat = FALSE
: we should only see the output of both
expressions.
1 + 0
## 1
1 + 1
## 2
jupyter_compat = TRUE
: we should only see the output of the last
expression.
1 + 0
1 + 1
## 2
;
In jupyter_compat = FALSE
: we should only see the print statement
output
print("hello");
## hello
1 + 0;
1 + 1;
jupyter_compat = TRUE
: we should only see the print statement output
print("hello");
## hello
1 + 0;
1 + 1;
jupyter_compat
works with interleaved expressionsprint('first_stdout')
## first_stdout
'first_expression'
print('second_stdout')
## second_stdout
'final_expression'
## 'final_expression'
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.