Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
10
Task/Copy-a-string/Oberon/copy-a-string.oberon
Normal file
10
Task/Copy-a-string/Oberon/copy-a-string.oberon
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
MODULE CopyString;
|
||||
TYPE
|
||||
String = ARRAY 128 OF CHAR;
|
||||
VAR
|
||||
a,b: String;
|
||||
|
||||
BEGIN
|
||||
a := "plain string";
|
||||
COPY(a,b);
|
||||
END CopyString.
|
||||
Loading…
Add table
Add a link
Reference in a new issue