🏳️⚧️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: CelDaemon <celdaemon at voidgroup.net> | |
| pkgname=wordle | |
| pkgver=1.0.0 | |
| pkgrel=1 | |
| epoch= | |
| pkgdesc="A simple word guessing game" | |
| arch=(x86_64 arm64) | |
| url="https://github.com/CelDaemon/wordle" | |
| license=('GPL-3.0-or-later') | |
| groups=() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env php | |
| <?php | |
| define('CSI', "\e["); | |
| define('CSI_SGR', 'm'); | |
| define('CSI_CPL', 'F'); | |
| define('CSI_EL', 'K'); | |
| define('COLOR_WHITE', 90); | |
| define('COLOR_GREEN', 92); | |
| define('COLOR_YELLOW', 93); | |
| define('STYLE_RESET', 0); |