10 lines
132 B
C
10 lines
132 B
C
#include <stdio.h>
|
|
#include "bigint.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
printf("Hallo Welt\n");
|
|
bigFromInt(5);
|
|
return 0;
|
|
}
|