What is the difference between $display("abc") and just $display;

What is the difference between $display(“abc”) and just $display; There are no statement to print in $display; thn why it is used.

1 Like

$display;

appends a newline. It is the same as

$write("\n");