mirror of
https://github.com/vishapoberon/oberonbyexample.git
synced 2026-04-05 21:02:25 +00:00
12 lines
256 B
Text
12 lines
256 B
Text
MODULE values;
|
|
|
|
|
|
IMPORT Out;
|
|
|
|
|
|
BEGIN
|
|
Out.String("Oberon has types, for example, I am a string type (ARRAY OF CHAR);"); Out.Ln;
|
|
Out.String("There are also other types, e.g. INTEGERs and BOOLEANs"); Out.Ln;
|
|
Out.Int(42, 0);
|
|
Out.Ln
|
|
END values.
|