Files
typthon/src/runtime.c
T

15 lines
275 B
C

#include "typthon/runtime.h"
#include "typthon/version.h"
const char *typthon_version(void) {
return TYPTHON_VERSION;
}
void typthon_print_banner(FILE *output) {
if (output == NULL) {
return;
}
fprintf(output, "Typthon %s\n", typthon_version());
}