# SymboScript Interpreter ## Installation ```bash cargo install symboscript-interpreter ``` ## Usage Check the [examples](../examples/) folder. ## Example ```bash symboscript ./examples/basic/hello_world.syms ``` ```syms println["Hello, World!"]; ``` You can also use REPL ```bash symboscript #Without path starts REPL ```