RosettaCodeData/Task/Copy-stdin-to-stdout/FreeBASIC/copy-stdin-to-stdout.basic
2023-07-01 13:44:08 -04:00

7 lines
217 B
Text

#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