Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. MODULE Hello;
  2.  
  3. IMPORT Console, In, Out;
  4.  
  5.  
  6. BEGIN
  7.     Console.open;
  8.  
  9.     Out.String("Hello, world!");
  10.     In.Ln;
  11.  
  12.     Console.exit(TRUE)
  13. END Hello.
  14.