TV Static Noise in QB64 | Oneliner Code

preview_player
Показать описание
Short QB64 Demo. TV Static Noise generated in QB64 in single line of code.

0 Print Chr$(176 + Int(Rnd * 3));: GoTo 0

Рекомендации по теме
Комментарии
Автор

YouTube's compression algorithm has a stroke.

wimwiddershins
Автор

DEF SEG = &HB800
terug:
FOR a = 0 TO 4000 STEP 2
POKE a, 176 + INT(RND * 3)
NEXT
GOTO terug

lucgev
visit shbcf.ru