Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 855 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 855 Bytes

go2048

2048 game in CLI written on Go

Make sure you have permission to run

chmod +x go2048

How to play

Use arrow keys to move points

Simple run

./go2048

image

image

Filling border with alternative symbol

./go2048 "*"

image

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 \.