RosettaCodeData/Task/Plasma-effect/Phix/plasma-effect-2.phix

8 lines
170 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
sequence s = video_config()
for i=1 to s[VC_SCRNLINES]*s[VC_SCRNCOLS]-1 do
bk_color(rand(16)-1)
text_color(rand(16)-1)
puts(1,"\xDF")
end for
{} = wait_key()