Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
8097 maxcodehac 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.