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

14 lines
119 B
C
Executable File

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