W

Implementation of programming language W

The official release of W.

Examples:

Factorial:

Example for versions W 0.0.1
Repeat 15
[
	Item x = 1
	Repeat #
	[
		x = x * #
	]
	Type(x)
]

Hello, World!:

Example for versions W 1.1.0
REF "Runtime.IO"
Type("Hello, World!")

Fibonacci numbers:

Example for versions W 1.1.0
REF "Runtime.IO"

Item x = 1
Item y = 1

Type(x)
Repeat 15
[
	Type(y)
	Item z = x + y
	x = y
	y = z
]