├── .gitignore ├── README.md ├── benchmark.js ├── benchmark.json ├── benchmarkpython.js ├── desc.json ├── generate_c.js ├── generate_js.js ├── generate_makefile.js ├── generate_python.js ├── gif └── show.gif ├── init.js ├── package.json ├── test.js ├── testpython.js └── tidy_code.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/benchmark.js -------------------------------------------------------------------------------- /benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/benchmark.json -------------------------------------------------------------------------------- /benchmarkpython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/benchmarkpython.js -------------------------------------------------------------------------------- /desc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/desc.json -------------------------------------------------------------------------------- /generate_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/generate_c.js -------------------------------------------------------------------------------- /generate_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/generate_js.js -------------------------------------------------------------------------------- /generate_makefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/generate_makefile.js -------------------------------------------------------------------------------- /generate_python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/generate_python.js -------------------------------------------------------------------------------- /gif/show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/gif/show.gif -------------------------------------------------------------------------------- /init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/init.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/test.js -------------------------------------------------------------------------------- /testpython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/testpython.js -------------------------------------------------------------------------------- /tidy_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freelw/nodejscallc/HEAD/tidy_code.js --------------------------------------------------------------------------------