Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lemu/README.md')
| -rw-r--r-- | lemu/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lemu/README.md b/lemu/README.md new file mode 100644 index 0000000..34044f9 --- /dev/null +++ b/lemu/README.md @@ -0,0 +1,11 @@ +# lemu + +mindustry Logic EMUlator. + +## Usage + +```rust +use lemu::Executor; +let mut lex = Executor::with_output(std::io::stdout()).program(r#"print "hello world""#).expect("program ok"); +lex.run(); +```
\ No newline at end of file |