verbena 0.1.0

Scripting language
Documentation
1
2
3
4
5
LET N = 1
WHILE N <= 10
	PRINT N; " SQUARED = "; N * N
	LET N = N + 1
END WHILE