date and time created 90/06/25 15:33:43 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 26 Jun 1990 06:33:43 +0000 (22:33 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 26 Jun 1990 06:33:43 +0000 (22:33 -0800)
SCCS-vsn: old/dbx/tests/mod/assign.mod 5.1

usr/src/old/dbx/tests/mod/assign.mod [new file with mode: 0644]

diff --git a/usr/src/old/dbx/tests/mod/assign.mod b/usr/src/old/dbx/tests/mod/assign.mod
new file mode 100644 (file)
index 0000000..4622733
--- /dev/null
@@ -0,0 +1,7 @@
+module main;
+from io import Writef, output;
+var a : array[1..100] of char;
+begin
+    a := "blah";
+    Writef(output, "%s", a);
+end main.