Skip to content

Enhancement-Request: Output repeats input #2

Description

@nneubauer

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions