Function run

Source
pub fn run(syntax: &str, source: &str)
Expand description

Runs a program using a syntax file and the source file.

Examples found in repository?
examples/test.rs (line 4)
3fn main() {
4    dynamo::run("assets/syntax.txt", "source/test.rs");
5}