Add false
This commit is contained in:
parent
a7972ed6c9
commit
62b8613877
@ -9,3 +9,4 @@ with some additions
|
|||||||
Implemeted utilities:
|
Implemeted utilities:
|
||||||
|
|
||||||
* `true`
|
* `true`
|
||||||
|
* `false`
|
||||||
|
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