mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
17 lines
342 B
C
17 lines
342 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "pikascript.h"
|
|
|
|
/* 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();
|
|
pikaScriptShell(pikaMain);
|
|
return 0;
|
|
}
|
|
|
|
char __platfrom_getChar(void){
|
|
return (char)getchar();
|
|
}
|
|
|