Where is my way?

 

HLA基本数据声明

HLA中有各种各样常量,类,数据声明语句,以后会介绍到

HLA中变量的声明

  

 

语法和pascal比较像

var 
  iSmall:smallInt;
  iByte : Byte; //pascal syntax declaration
 

static节区中的变量可以初始化,当变量读入内存时系统会初始化它

 

Program DemoVars; // DemoVars 区分大小写
#include("stdlib.hhf")
//变量声明方式
static
InitDemo: int32 :
= 5;//初始化
NotInitialized: Int32;//未初始化

begin DemoVars;

stdout.put(
"InitDemo's value is",InitDemo,nl); //nl:new-line

stdout.put(
"Enter an integer value:");//Input an interget value form the user and display that value
stdin.get(NotInitialized);

stdout.put(
"You entered: ",NotInitialized,nl);

end DemoVars;

  

    

posted on 2011-09-19 13:07  ManLoveGirls  阅读(220)  评论(0编辑  收藏  举报

导航