diff options
Diffstat (limited to 'src/u_prints.go')
-rw-r--r-- | src/u_prints.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/u_prints.go b/src/u_prints.go index c4faf4f..205f04b 100644 --- a/src/u_prints.go +++ b/src/u_prints.go @@ -39,7 +39,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * go2work: src/u_prints.go - * Tue Mar 29 22:41:23 CEST 2022 + * Fri Apr 1 18:49:41 CEST 2022 * Joe * * Stuff to print @@ -112,3 +112,10 @@ func print_version() { func print_fortune_not_found() { fmt.Println("Beware, fortune is set on but was not found") } + +func print_file_not_found(file string) { + fmt.Println("\n\nBeware, file \"" + + file + + "\" not found! Using default ringtone", + ) +} |