Files
afs2026-hw1/code/test/consoleIO_test1.c
2026-03-27 10:12:37 +08:00

13 lines
101 B
C
Executable File

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