17 lines
342 B
C
Raw Normal View History

2022-01-18 01:13:43 +08:00
#include <stdio.h>
#include <stdlib.h>
#include "pikascript.h"
2022-01-18 01:13:43 +08:00
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
PikaObj* pikaMain = pikaScriptInit();
2022-10-04 17:58:42 +08:00
pikaScriptShell(pikaMain);
2022-01-18 01:13:43 +08:00
return 0;
}
2022-10-04 17:58:42 +08:00
char __platfrom_getChar(void){
return (char)getchar();
}