Open MEO265 opened 11 months ago
To make the console output look cleaner one could replace all the prints using paste
print
paste
if (confirm) print(paste0("Log file set to ", logfile))
with cats
if (confirm) cat("Log file set to ", logfile, "\n")
To make the console output look cleaner one could replace all the
print
s usingpaste
with cats