SLAC: Simple Logic & Arithmetic Compiler
SLAC is a small and simple compiler which converts a single expression statement into an AST.
It is written in Rust and as such compiles easily as an executable, wasm module, or standalone DLL.
Examples
Library usage
use ;
Interpreter
SLAC features a built-in tree walk interpreter.
Create an Environment which houses the variables and user defined functions. Then use the TreeWalkingInterpreter class to execute the AST against the environment.
use compile;
use Environment;
use TreeWalkingInterpreter;
use Value;
Script syntax
The script syntax itself is similar to Delphi Pascal code.
// arithmetic operators
40 + 1 * 2
// > 42
// Integer Division and Modulo
50 div 20 mod 2
// > 2
// comparisons
50 + 50 = 100
// > True
// logical operators
True and not False
// > True
// grouping
(40 + 1) * 2
// > 82
// arrays
[1, 2, 3] + ['Four']
// > [1, 2, 3, 'Four']
// application defined external functions
someFunc(true)
// > depends on the definition of 'someFunc'
// application defined variables
SOME_VAR + -10
// > depends on the definition of 'SOME_VAR'
Installation
The minimum required Rust toolchain version for SLAC is 1.70.0 or higher.
Use cargo add slac to install the library from crates.io as a dependency in your application.
License
Copyright 2023 Dennis Prediger
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.