Files
ios2024/code/test/consoleIO_test2.c

14 lines
119 B
C

#include "syscall.h"
int
main()
{
int n;
for (n=15;n<=19;n++){
PrintInt(n);
}
Halt();
}