WORKFLOW
Do a Computation without Displaying Output
Evaluating an expression usually gives the result as output:
list = Range[5]Adding a semicolon (;) to the end of an expression suppresses the output:
list = Range[5];The assignment is done even though the output is suppressed:
listYou can refer to the result of the previous computation using % even if the output is suppressed by a semicolon:
Range[5];%