W 0.0.1

Version of implementation W of programming language W

The initial release of the W compiler.

Examples:

Factorial - W (508):

Repeat 15
[
	Item x = 1
	Repeat #
	[
		x = x * #
	]
	Type(x)
]