惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog

博客园 - 阿飞外传

ruby-core 简单rails开发环境 关于MDA的长期等待 Is MOF the kernel language of MDA langs family graduated 语言内实例表示机制 类型信息隐藏 MOF自描述 图模式-续 符号软件工程(SSE) next MDA? Algebra operator declaration 's UML profile 应用元建模读书笔记 再谈实例化和图转换 EclipseUML2.0::Class的接口 主题与模型 MDA轮廓 UML::Element的代数规范 UML::InstanceValue是元类吗 MDA is a big reflection i need a job CGN的IP之父访谈的两句话
A sample of writing a loop in Action Semantic codes
阿飞外传 · 2004-11-07 · via 博客园 - 阿飞外传

int i = 0;

for(; i<10; ++i)

{ do something; }

   allocate a cell  -- 这里没有类型化的内存分配

then

   bind i to the given Cell

then

   give the Cell bound to i

then

   store the value of 0 in the given Cell -- 注意这里0是字符值

then

   unfolding

give the Integer bound to i

        and then give(the given Integer is less than the value of 10)

           then

                check(the given TruthValue is true)

                   and then execute do something

                      and then give the Integer bound to i

                         and then give sum(the value of 1, the given Integer)

                            and then store the given Integer in the Cell bound to i

                              and then unfold

            or

check(the given TrueValue is false) and then complete

and then, and, then, or的语义示意图: