char as integer = 0 LastTime as float = 0.0 while char <= 255 if Timer() - LastTime > 0.4 print( str(char) + ": " + chr(char)) LastTime = Timer() char = char + 1 sync() endif endwhile end