The Simula Programming Language

Hello World! Example Program


Click below to go directly to a specific section:
Description | Source Code | Sample Run | Program Notes

Description

This program demonstrates the text output function of the SIMULA programming language by displaying the message "Hello world!".

Source Code

Begin
    while 1=1 do begin
          outtext("Hello World!);
          outimage;
    end;
End;

  

Sample Run

Hello World!


Program Notes

This program has not been tested.
[Back] [Home]

Last modified: 03:37 PM on 11/21/1996