thats a great README file honey where did you get that from

This commit is contained in:
echo 2022-09-23 12:33:50 +03:30
parent 5d4761e499
commit 85c04bc13b
7 changed files with 47 additions and 49 deletions

View file

@ -9,6 +9,7 @@ var args []string
var shoulduwuify bool = true
var noascii bool = false
var usepng bool = false
var hascolor bool = true
func Initargs() {
args = os.Args[1:]
@ -21,6 +22,8 @@ func Initargs() {
noascii = true
case "--usepng":
usepng = true
case "--nocolor":
hascolor = false
}
}
}