分类: C/C++
2009-03-17 23:07:17
HLA介绍就不重复了,在我的日志:HLA编译环境搭建(windows)中
当然了,第一个程序对学过编程语言的人来说都很明确——hellowold呗!(想都不用想)
程序代码如下:
program helloWorld;
#include("stdlib.hhf");
begin helloWorld;
stdout.put("Hello,World of Assembly Language",nl);
end helloWorld;
都能看懂吧~~必须的!
运行程序:
hla helloWold.hla
恩,当然,HLA相比masm、Gnu as汇编简单得多,它规避了很多东西。这条简单的语言便执行了编译、连接两个环节
现在很简单,以后很精彩!共同进步!