17 lines
203 B
C
17 lines
203 B
C
#include "syscall.h"
|
|
void print(char c, int n)
|
|
{
|
|
int i;
|
|
//#if 0
|
|
for (i = 0; i < n; i++) {
|
|
PutChar(c + i);
|
|
}
|
|
PutChar('\n');
|
|
//#endif
|
|
}
|
|
int
|
|
main()
|
|
{
|
|
print('a',4);
|
|
Halt();
|
|
}
|