Closed gbegen closed 1 year ago
Prior to this fix, diag 0; would output an empty string instead of "0".
diag 0;
Change from || to // to only convert undef to the empty string.
||
//
As near as I can tell, there were no tests for this code, and all the tests seem to pass with this change.
Prior to this fix,
diag 0;
would output an empty string instead of "0".Change from
||
to//
to only convert undef to the empty string.