mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 04:46:42 -04:00
9 lines
205 B
Go
9 lines
205 B
Go
//go:build interactive
|
|
|
|
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) int {
|
|
return code
|
|
}
|