Support semicolon (;) as a way to suppress output #3726
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Description
In Jupyter, if you have a cell that ends in a function call with a semicolon, the output is supressed:
5
vs
5;
In Marimo, this is not the case:
The only way to achieve the same result is with a dummy assignment:
which is clearly unpleasant.
Suggested solution
Follow Jupyter and interpret the
;
on the last statement as a indication that the output should be suppressed.Alternative
No response
Additional context
This was on marimo 0.9.14
The text was updated successfully, but these errors were encountered: