Usa |
|
package main
|
|
import "fmt"
import "os"
|
|
func main() {
|
|
I |
defer fmt.Println("!")
|
Terminiamo il programma col valore di uscita 3. |
os.Exit(3)
}
|
Nota che a differenza di C e simili, Go non usa un
valore restituito da |
Se esegui |
$ go run exit.go
exit status 3
|
Compilando e eseguendo il programma potrai anche vedere il valore restituito nel terminale. |
$ go build exit.go
$ ./exit
$ echo $?
3
|
Nota che il |