skink
v0.0.34
Published
C-style programming language with numerical analysis features
Downloads
20
Maintainers
Readme
skink
(WiP) Skink is a small, statically typed, interpreted programming language that is especially suited to numeric computation and scientific computing. It emphasizes prototype-based code.
Specification
See SPEC.md.
Implementation
Skink's core is implemented in Node.js. The Skink evaluator executes a typed abstract syntax tree.
Installation and Usage
You first need to install Node.js if you don't already have it.
After installing Node.js, install skink from npm
$ npm install skink
Once you have installed the package you can run the shell from bash using
$ skink
and run a file using
$ skink <filename>
If you don't have bash, you can use the node API:
var skink = require("skink");
skink("<filename>");