APL/APL1.2/SCR1.2/TP10/disp.c

10 lines
155 B
C
Raw Normal View History

2022-01-18 14:16:05 +01:00
#include<stdio.h>
#include<stdlib.h>
int main(int argc,char* argv[]){
while(1){
printf("%s",argv[1]);
fflush(stdout);
}
exit(0);
}