Files
libmutton/core/exitSoft.go
T

9 lines
202 B
Go

//go:build returnOnExit
package core
// Exit (soft) is meant to be used in interactive implementations (GUIs/TUIs) to keep the program running after an operation.
func Exit(code int) {
return code
}