2048 game in CLI written on Go
chmod +x go2048
Use arrow keys to move points
./go2048
./go2048 "*"
You can fill borders with any character you want. Just run ./go2048 <char>
. Here we set *
in double quotes because in shell it is a special character, like |
, ;
, &
, <
, >
and etc. For the same reasons in place of <char>
use "\""
for "
and "\\"
for \
.