mirror of
https://github.com/vishapoberon/oberonbyexample.git
synced 2026-04-05 21:02:25 +00:00
15 lines
152 B
Modula-2
15 lines
152 B
Modula-2
MODULE proc;
|
|
|
|
|
|
IMPORT Out;
|
|
|
|
|
|
PROCEDURE printSum(a, b : INTEGER);
|
|
BEGIN
|
|
Out.Int(a + b, 0); Out.Ln
|
|
END printSum;
|
|
|
|
|
|
BEGIN
|
|
printSum(6, 9)
|
|
END proc.
|