Showing posts with label hello world in turbo pascal. Show all posts
Showing posts with label hello world in turbo pascal. Show all posts

Thursday, March 30, 2017

Hello World in Turbo Pascal

Here is a very simple program that I wrote using Turbo Pascal to display a message Hello World on the screen of your computer. Most of the first programming examples when teaching computer programming is to display a message on the screen. Hello World is the most common given examples to the students. I am using Turbo Pascal for Windows in this sample program of ours. Thank you.

My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.



Sample Program Output


Program Listing

{Date : March 30, 2017    Thursday            }
{Metro Manila, Philippines                  }
{jakerpomperada@yahoo.com and jakerpomperada@gmail.com }

Program hello_world;

Uses WinCrt;

Begin
clrscr;
 writeln;
 Writeln;
 writeln('HELLO WORLD !!! ');
 writeln;
 Writeln;
 writeln('END OF PROGRAM');
readln;
End.