9 lines
137 B
C
9 lines
137 B
C
#include "syscall.h"
|
|
|
|
int main(){
|
|
do {
|
|
char c = GetChar();
|
|
PutChar(c);
|
|
PutChar('\n');
|
|
} while(1 == 1);
|
|
}
|