Programming made easy

Tutorials

Learn programming

Documentation - Code snippets

Functions and recursion

Making a game


Demos

for i = 1 to 10
   print i * i
end
rad = 12
x = 50
y = 75
vx = 1.5
color 700
#
on animate
   clear
   move x y
   circle rad
   x += vx
   y += vy
   if x > 100 - rad or x < rad
      vx = -vx
   end
   if y < rad
      vy = -vy
   else
      vy -= 0.08
   end
end

More about Easylang

Version: 2502c

Programs can be stored locally within the browser

print "Hello world"