]> git.cworth.org Git - zombocom-ai/blobdiff - bus.html
Drop unneeded semicolons from python code
[zombocom-ai] / bus.html
index df6f572ed27ca18708d1aea16b2a3d89819601b9..f16a509ae18bfea5b72955cf5a0f9d30be55c1d6 100644 (file)
--- a/bus.html
+++ b/bus.html
       </h1>
       <form id="form">
        <textarea id="code" rows="10" width="100%">def random_dot():
-  x = 512 * random()
-  y = 512 * random()
+  x = 200 * random()
+  y = 200 * random()
   radius = 4 + 6 * random()
-  circle(x, y, radius);
-  fill();
+  circle(x, y, radius)
+  fill()
 
-for i in range(1000):
+for i in range(100):
   if i %2 == 0:
     set_color('red')
   else:
     set_color('blue')
-  random_dot();</textarea>
+  random_dot()</textarea>
        <button type="submit">Run code</button>
       </form>
       <img id="output"></img>