├── .gitignore ├── Cargo.toml ├── README.md ├── examples └── brahma.rs ├── notes.md ├── run.sh └── src ├── builder.rs ├── component.rs ├── fake_logging.rs ├── lib.rs └── operator.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/README.md -------------------------------------------------------------------------------- /examples/brahma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/examples/brahma.rs -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/notes.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/run.sh -------------------------------------------------------------------------------- /src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/src/builder.rs -------------------------------------------------------------------------------- /src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/src/component.rs -------------------------------------------------------------------------------- /src/fake_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/src/fake_logging.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/operator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitzgen/synth-loop-free-prog/HEAD/src/operator.rs --------------------------------------------------------------------------------