The Ada 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 simply demonstrates the return of a string from a procedure call, in the Ada programming language. The program will display the message "Hello world" each time the procedure HELLO is called.

Source Code


with Text_To; use Text_To
  procedure hello is
    begin
    put("Hello World");
 end hello 



Click
here to download the source code.

Sample Run

Hello World


Program Notes


[Back] [Home]

Last modified: 05:30 PM on 11/21/1996 by Richard Freiberg