Axiom is a programming language designed for simplicity. 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