Files
ios2024/code/test/consoleIO_test1.c

13 lines
101 B
C

#include "syscall.h"
int
main()
{
int n;
for (n=9;n>5;n--) {
PrintInt(n);
}
Halt();
}