main.c 342 B

12345678910111213141516
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "pikascript.h"
  4. /* run this program using the console pauser or add your own getch, system("pause") or input loop */
  5. int main(int argc, char *argv[]) {
  6. PikaObj* pikaMain = pikaScriptInit();
  7. pikaScriptShell(pikaMain);
  8. return 0;
  9. }
  10. char __platfrom_getChar(void){
  11. return (char)getchar();
  12. }