Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
13
Task/Read-entire-file/XPL0/read-entire-file.xpl0
Normal file
13
Task/Read-entire-file/XPL0/read-entire-file.xpl0
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
include c:\cxpl\codes; \intrinsic 'code' declarations
|
||||
string 0; \use zero-terminated string convention
|
||||
int I;
|
||||
char Str;
|
||||
[Str:= GetHp; \starting address of block of local "heap" memory
|
||||
I:= 0; \ [does the exact same thing as Reserve(0)]
|
||||
loop [Str(I):= ChIn(1);
|
||||
if Str(I) = $1A\EOF\ then [Str(I):= 0; quit];
|
||||
I:= I+1;
|
||||
];
|
||||
SetHp(Str+I+1); \set heap pointer beyond Str (not really needed here)
|
||||
Text(0, Str); \show file as a string
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue