f-8: code: move binary name #8

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2025-12-26 23:02:14 +01:00
commit 1ac1e61864
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632

View file

@ -5,10 +5,13 @@ import (
"os"
)
var (
bin_name = os.Args[0]
)
func main() {
bin_name := os.Args[0]
fmt.Printf("%s: Start process\n", bin_name)
os.Exit(5)
os.Exit(0)
}