Skip to content

Instantly share code, notes, and snippets.

View kairess's full-sized avatar

Brad kairess

View GitHub Profile
@honzakral
honzakral / snake.py
Last active October 31, 2021 02:20
snake game in python
import pygame
from pygame.locals import *
from random import randint
import os, sys
ARRAY_SIZE = 50
DIRECTIONS = {
"LEFT": (-1, 0),
"RIGHT": (1, 0),