mirror of
http://git.dtluna.net/tomo/go-coreutils.git
synced 2025-01-07 06:39:54 +00:00
Add false
This commit is contained in:
parent
a7972ed6c9
commit
62b8613877
11
false/false.go
Normal file
11
false/false.go
Normal file
@ -0,0 +1,11 @@
|
||||
// false exits with an exit code of 1
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
os.Exit(1)
|
||||
}
|
Loading…
Reference in New Issue
Block a user