The Stackathon Library
Holds all the code to run stackthon snippets and files
This library makes it easy to use stackathon in any application
Usage
Usually you will use the run_string() function.
use run_string;
run_string;
//Expected Output: 4
run_string;
//Expected Output: "hello world"
Modules
- 'lexer': Handles tokenizing valid stackathon source code
- 'vm': Handles running the tokens given by the lexer
- 'types': Defines types used throughout the library
- 'serial': Handles serializing libraries efficiently