Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

MemorytweetView game page

A game in which the code and assets fits in a tweet
Submitted by skovtrolden — 6 days, 4 hours before the deadline
Add to collection

Play game

Memorytweet's itch.io page

How many characters did you use?
278

Include your code here, if you'd like to show it off!
Find it in the comments!

Leave a comment

Log in with itch.io to leave a comment.

Comments

Developer

import random, os
def c():os.system('cls')
def p(s):print(s)
n=''
i=0
p("Write")
while True:
 s="Score "+str(i)
 m=str(random.randint(0,9))
 if(i!=0):p(s),p("At end add")
 p(m)
 n+=m
 if input()!=n:
  i=0
  c()
  p("Answer was "+n)
  p(s)
  p("Again")
  n=''
 else:
  i+=1
  c()