-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
The output inside a jupyter notebook resembles the output of the repl imo too closely. Specifially it repeats all inputs (probably because each line break is sent to the repl independently).
In [6]:
String a = "b";
String b = "c";
String d = "e";
yields:
String a = "b";
| Modified variable a of type String with initial value "b"
String b = "c";
| Modified variable b of type String with initial value "c"
String d = "e";
| Added variable d of type String with initial value "e"
Suggestion: Maybe removing all line breaks might help, as the output in the repl looks better when doing so:
-> String a = "b"; String b = "c"; String c = "d";
| Modified variable a of type String with initial value "b"
| Modified variable b of type String with initial value "c"
| Added variable c of type String with initial value "d"
Metadata
Metadata
Assignees
Labels
No labels