Pascal: Output

Example: Simple Output in Pascal


	program HelloWorld;

	begin
		writeln('Hello, world!');
	end.
	

Output:

  Hello, world!