Programming Forums

Programming Forums (http://www.programmingforums.org/forumindex.php)
-   Assembly (http://www.programmingforums.org/forum20.html)
-   -   how can build a hla program (http://www.programmingforums.org/showthread.php?t=15634)

crazyc0de Apr 16th, 2008 8:08 AM

how can build a hla program
 
i try to build the program:
:

Program HelloWorld
#include ("stdlib.hhf")
begin HelloWorld;
stdout.put("Hello,world!",nl);
end HelloWorld;

using hla HelloWorld
an error occured:
Error in file "os.hhf" at line 3 [errid:3753/hlaparse.bsn]
Expected ';', encountered 'namespace'.
Near: << namespace >>
why?

Infinite Recursion Apr 16th, 2008 9:00 AM

Re: how can build a hla program
 
You are missing a few ; symbols.

Here is a tutorial: http://webster.cs.ucr.edu/AoA/Windows/HTML/AoATOC.html


:

Program HelloWorld;

#include ("stdlib.hhf");

begin HelloWorld;
  stdout.put("Hello,world!",nl);
end HelloWorld;


crazyc0de Apr 26th, 2008 1:36 AM

Re: how can build a hla program
 
Quote:

Originally Posted by Infinite Recursion (Post 143985)
You are missing a few ; symbols.

Here is a tutorial: http://webster.cs.ucr.edu/AoA/Windows/HTML/AoATOC.html


:

Program HelloWorld;

#include ("stdlib.hhf");

begin HelloWorld;
  stdout.put("Hello,world!",nl);
end HelloWorld;


Thank you.


All times are GMT -5. The time now is 9:27 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC