feature/pwd
dtluna 5 年之前
父節點 a7972ed6c9
當前提交 62b8613877
  1. 1
      README.md
  2. 11
      false/false.go

@ -9,3 +9,4 @@ with some additions
Implemeted utilities:
* `true`
* `false`

@ -0,0 +1,11 @@
// false exits with an exit code of 1
package main
import (
"os"
)
func main() {
os.Exit(1)
}
Loading…
取消
儲存