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

7 lines
86 B
C

#include "syscall.h"
int main(){
PutInt(10);
PutInt(110);
PutInt(007);
}