Lab 0

Lab Description:

To understand and demonstrate how to post pages, submit completed lab reports and the installation of HLA as demonstrated in class. To display the source code, the usage of the HTML tag of <pre> and </pre> is important because of a bug of the site; placement of the tags will be in the text tab (right next to the visual tab) located before (<pre>) and after the source code (</pre>). This will allow the copied text to remain in its own preformatted style with respect to indentations and etc.

Code:

program helloWorld;
#include("stdlib.hhf");

begin helloWorld;

	stdout.put("Hello, World!", nl);

end helloWorld;

Screenshot:

CET3510_lab0