Sha256: e2f1e3025e2f53f33ea2338b57cb5499b17c60cf69d644d58c7bdd68b7af946f
Contents?: true
Size: 302 Bytes
Versions: 10
Compression:
Stored size: 302 Bytes
Contents
# Setup and Draw. # # The draw() function creates a structure in which # to write programs that change with time. def setup size 640, 360 @y = 100 stroke 255 frame_rate 30 end def draw background 0 @y = @y - 1 @y = height if @y < 0 line 0, @y, width, @y end
Version data entries
10 entries across 10 versions & 1 rubygems