back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-03-23 21:17:41 +0300
committerscratko <m@scratko.xyz>2024-03-23 21:17:41 +0300
commit4f012a83240aeea6f961446affb68f3711f6d310 (patch)
tree26c35dd94a686c68200d18bead3e19e62fb0717e /README.md
parent33dfbed68e741d84dc41d3641de1ad8e4694d9bc (diff)
downloadtetris-4f012a83240aeea6f961446affb68f3711f6d310.tar.gz
tetris-4f012a83240aeea6f961446affb68f3711f6d310.tar.bz2
tetris-4f012a83240aeea6f961446affb68f3711f6d310.zip
added readmeHEADmaster
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..de89d10
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+# The proprietary implementation of Tetris written in Pascal.
+
+<img src="tetris.png" />
+
+The following alogorithms were used: single-linked lists, binary search tree and
+bubble sort.
+
+Crt module is applied as a gui part.
+
+## Building
+
+To build and run the application, type the commands:
+
+```
+git clone https://git.scratko.xyz/tetris.git
+cd tetris
+fpc tetris.pas
+./tetris
+```