Skip to content

Instantly share code, notes, and snippets.

View timcou37's full-sized avatar

timcou37

  • Joined Oct 7, 2025
View GitHub Profile
@timcou37
timcou37 / essai.py
Last active October 9, 2025 21:29
Essai
from math import *
import ion
while True:
if ion.keydown(ion.KEY_OK):
print("La touche OK est pressée !")
if ion.keydown(ion.KEY_BACK):
print("Retour en arrière !")
@timcou37
timcou37 / game_data.py
Last active October 10, 2025 10:55
jeu
from math import *
import kandinsky as kd
def init_color():
black = (0, 0, 0)
white = (255, 255, 255)
red = (255, 0, 0)
orange = (255, 127, 0)
yellow = (255, 255, 0)