Here are some simple ways to make your PICO-8 code fit in 140 characters (as in the tweetjam craze). I did not invent these, I merely observed and collected them from the tweetjam thread.
- Use single character variable names
- Use
x=.1andx=.023, notx=0.1orx=0.023 x=1/3is shorter thanx=.3333- You don't need to separate everything with spaces or write them on their own lines, e.g.
circ(x,y,1)pset(z,q,7)works just as well