| Get |
| Syntax |
Get(D: DEVICE, N: INT): LIST of INT |
| Description |
| Example |
D := OpenIFile("io.cpkg"); -- open the file "io.cpkg"
Get(D,10); -- get the first 10 characters
[45, 45, 32, 105, 111, 100, 101, 118, 46, 112]
-------------------------------
ascii(It); convert the ASCII code to characters
-- iodev.p
-------------------------------
ascii(Get(D,10)); -- get the next 10 characters and convert
kg : 0.1 :
-------------------------------
Close(D);
|
| See Also |