RosettaCodeData/Task/Bitmap-Write-a-PPM-file/Modula-3/bitmap-write-a-ppm-file-1.mod3

8 lines
106 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
INTERFACE PPM;
IMPORT Bitmap, Pathname;
PROCEDURE Create(imgfile: Pathname.T; img: Bitmap.T);
END PPM.