2020-12-18 22:35:59 +08:00
|
|
|
// clang -Wall -o demo demo.c mandelbrot.o
|
2020-03-30 22:47:45 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int output(int x) {
|
|
|
|
static char chars[] = " .,-:;i+hHM$*#@ ";
|
|
|
|
if(x < 0) {
|
|
|
|
putchar('\n');
|
|
|
|
} else {
|
|
|
|
if(x < strlen(chars)) {
|
|
|
|
putchar(chars[x]);
|
|
|
|
} else {
|
|
|
|
printf("ERROR\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern int run();
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
run();
|
|
|
|
return 0;
|
|
|
|
}
|