mozjs_sys 0.67.1

System crate for the Mozilla SpiderMonkey JavaScript engine.
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

extern void func1(void);

int main(void)
{
  printf("Hello from prog1.c\n");
  func1();
  return 0;
}