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 committed by nea
parent c771c734f0
commit 05743c41a1
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
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
}
}
}