We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
特性描述:增加非递归的、直接的循环结构(while condition body)。这个特性应当优先实现,因为该结构无法通过宏构造出来。
(while condition body)
实现思路:①将while设置为关键字;②编译器将其作为特殊结构,使用现有的AIL指令集直接编译为AIL代码。
while
The text was updated successfully, but these errors were encountered:
考虑将尾递归编译为简单循环。这是最基本的编译优化好吧。
Sorry, something went wrong.
No branches or pull requests
特性描述:增加非递归的、直接的循环结构
(while condition body)
。这个特性应当优先实现,因为该结构无法通过宏构造出来。实现思路:①将
while
设置为关键字;②编译器将其作为特殊结构,使用现有的AIL指令集直接编译为AIL代码。The text was updated successfully, but these errors were encountered: