Axiom is a programming language designed for simplicity. It's kind of like BASIC but even easier to use. It's kind of like pseudocode but it actually runs.

Axiom is very easy to learn. The one-page language manual can be read and understood within a day.

See the FAQ for more information.

Download

Binaries for various platforms and syntax highlighters can be found here.

Example

#this is a function
:hello(name)
	print 'hello',name+'!'

hello('world')

##
output:
hello world!
##

See more examples here.

Reference

See the complete language manual and library reference here.

Updates