W 1.1.0

Version of implementation W of programming language W

The W Programming Language: Version 1.1.0

Examples:

Hello, World! - W (507):

REF "Runtime.IO"
Type("Hello, World!")

Fibonacci numbers - W (510):

REF "Runtime.IO"

Item x = 1
Item y = 1

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