date and time created 90/06/25 15:33:43 by bostic
[unix-history] / usr / src / old / dbx / tests / mod / assign.mod
module main;
from io import Writef, output;
var a : array[1..100] of char;
begin
a := "blah";
Writef(output, "%s", a);
end main.