因为很显然程序写成下面这个样子更费事儿:
namespace Test begin class Program begin function Main args none begin declare x as int = 0 for declare i as int = 0 while i lessthan 100 then i = i add 1 begin invoke Console.WriteLine x = x add i end end end end
顺便说一下上面的代码是从C#代码翻译过来的,其实就是把所有除了=之外的符号全部都换成关键词了,另外也根据一些可能歧义的地方做了一些小修饰看起来像是一个真正的编程语言。