home *** CD-ROM | disk | FTP | other *** search
- /* _very_ slow "filecopier". just to demo io-functions */
-
- (string s)
- (window 0 11 400 100 'filecopy')
- (write 'let me copy a file for you to ram:')
- (write 'file: ' '')
- (read s)
- (if (greater (filelen s) 0)
- (do
- (write 'copying file "' s '" to "ram:x" ...')
- (see s) (tell 'ram:x')
- (while (uneq (put (get)) -1)) /* put doesn't write -1, only 255 */
- (seen) (told)
- )
- (write 'no such file!')
- )
-