NachOS/code/test/getint.c

10 lines
158 B
C

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