What & Why

A simple scripting language built for Elementary Developers.

While there are plenty of scripting languages out there, ElementScript intentionally limits the scripting features so that the focus is on logic rather than syntax.

BlockScript

Remember those building blocks you used to play with as a child?
We apply the same concept here. You shape a Block in the way you want and bring multiple blocks together to build something great. This is not real scripting, but surely a great foundation.

Buidling a 'HI' Block Open Editor

# block adds a block. 
# color-blue makes block blue.
# space-4 gives 4 spaces.
# repeat-6 repeats the block 6 times
# end takes you to next line
                    
block.color-blue space-4 block.color-blue space-2 block.color-red.repeat-3 end
block.color-blue space-4 block.color-blue space-6 block.color-red end
block.color-blue.repeat-3 space-6 block.color-red end
block.color-blue space-4 block.color-blue space-6 block.color-red end
block.color-blue space-4 block.color-blue space-2 block.color-red.repeat-3 end
HI Block

What Next ?

We are constantly working on improving this script. Check back often to see what's new.