1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/2048
2020-08-31 23:15:40 +02:00
..
assets examples: add 2048 game 2020-08-18 09:29:43 +03:00
.gitignore examples: add 2048 game 2020-08-18 09:29:43 +03:00
LICENSE examples: add 2048 game 2020-08-18 09:29:43 +03:00
main.v checker: implement [required] struct field attribute (#6276) 2020-08-31 23:15:40 +02:00
README.md examples: add 2048 game 2020-08-18 09:29:43 +03:00
v.mod examples: add 2048 game 2020-08-18 09:29:43 +03:00

V 2048

This is a simple 2048 game, written in the V programming language. 2048 Game Screenshot

Description:

Merge tiles by moving them. After each move, a new random tile is added (2 or 4). The goal of the game is to create a tile with a value of 2048.

Keys:

Escape - exit the game Backspace - undo last move n - restart the game

UP,LEFT,DOWN,RIGHT or W,A,S,D - move the tiles

Running instructions:

Compile & run the game with ./v run examples/2048