RosettaCodeData/Task/Copy-stdin-to-stdout/FreeBASIC/copy-stdin-to-stdout.basic

8 lines
217 B
Plaintext

#define FIN 255 'eof is already a reserved word
#include "crt/stdio.bi" 'provides the C functions getchar and putchar
dim as ubyte char
do
char = getchar()
if char = FIN then exit do else putchar(char)
loop