crt/kill_windows.go
2023-05-19 19:14:46 +02:00

10 lines
62 B
Go

package crt
import (
"os"
)
func SysKill() {
os.Exit(1)
}