Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #include <mujs.h>
  5. #include <import.h>
  6.  
  7.  
  8. int main(int argc, char **argv)
  9. {
  10.     import_functions();
  11.     js_dofile(J, argv[1]);
  12.     js_freestate (J);
  13.     exit(0);
  14. }
  15.