NachOS/code/test/getint.c
2021-10-19 08:19:21 +02:00

9 lines
135 B
C

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