diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-01 19:44:27 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-01 19:44:27 +0200 |
commit | b5b54feb70ba1dabc2ef425679f3c569b4e199fa (patch) | |
tree | e1f1605ab39455479d7d6c9c30e4e6f09badf729 /src/u_prints.go | |
parent | Random works fine (diff) | |
download | go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.gz go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.bz2 go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.xz go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.tar.zst go2work-b5b54feb70ba1dabc2ef425679f3c569b4e199fa.zip |
In progress
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", + ) +} |