W
Implementation of programming language WThe official release of W.
Examples:
Factorial:
Example for versions W 0.0.1Repeat 15
[
Item x = 1
Repeat #
[
x = x * #
]
Type(x)
]
Hello, World!:
Example for versions W 1.1.0REF "Runtime.IO"
Type("Hello, World!")
Fibonacci numbers:
Example for versions W 1.1.0REF "Runtime.IO"
Item x = 1
Item y = 1
Type(x)
Repeat 15
[
Type(y)
Item z = x + y
x = y
y = z
]
Comments
]]>blog comments powered by Disqus
]]>