0.4.0 • Published 3 years ago

fish-interpreter v0.4.0

Weekly downloads
2
License
ISC
Repository
github
Last release
3 years ago

fish-interpreter

The interpreter for https://fishlanguage.com

Usage

const FishExecutor = require("fish-interpreter");

const source = `"hello, world"r\
          o;!?l<`;

const executor = new FishExecutor(source);

executor.onUpdate((e) => {
	// `e` is the executor
	if (e.hasTerminated) {
		console.log(e.output);
	}
});

executor.run();

See the documentation in doc/. See the files of https://fishlanguage.com for some more advanced usage

0.4.0

3 years ago

0.3.4

3 years ago

0.3.3

5 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago