frontend icon indicating copy to clipboard operation
frontend copied to clipboard

CSE machine: avoid creating implit block if it's not needed

Open martin-henz opened this issue 1 year ago • 0 comments

Example: 1; 2; should produce in the CSE machine: 1; 2; and not

{
1; 2;
}

martin-henz avatar Feb 20 '24 07:02 martin-henz