xxxxxxxxxx
f=0
draw=_=>{
frameRate(20)
f++||(g=createGraphics(L=40,20,WEBGL),C=console)
g.clear().pointLight([L],0,-80,80).rotateY(.2).torus(6,3,L)
y=10
while(y--){
s=`${y}`
x=L
while(x--){
w="`"
if((G=g.get(x,y*2)[0])>16) w="+"
if(G>94) w="0"
s+=w
}
C.log(s)
}
}