NachOS/code/test/getint.c
2021-10-15 02:04:42 +02:00

9 lines
144 B
C

#include "syscall.h"
int main(){
do {
int number = GetInt();
PutInt(number);
PutChar('\n');
} while(1 == 1);
}