Not Your Ordinary Hello World in Pascal


/ Published in: Pascal
Save to your folder(s)

A Pascal version of mattloto's C++ program. just to prove that pascal is cool.


Copy this code and paste it in your HTML
  1. program Spamhello;
  2. const
  3. a:boolean = true;
  4.  
  5. begin
  6. repeat
  7. writeln('Hello World! >:D');
  8. until a = false
  9. end.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.