├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets ├── usage-2-floss.png ├── usage-converter.png └── usage-direct.png ├── samples ├── floss.at ├── hello.at └── hello.bf └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/README.md -------------------------------------------------------------------------------- /assets/usage-2-floss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/assets/usage-2-floss.png -------------------------------------------------------------------------------- /assets/usage-converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/assets/usage-converter.png -------------------------------------------------------------------------------- /assets/usage-direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/assets/usage-direct.png -------------------------------------------------------------------------------- /samples/floss.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/samples/floss.at -------------------------------------------------------------------------------- /samples/hello.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/samples/hello.at -------------------------------------------------------------------------------- /samples/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/samples/hello.bf -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mochidaz/anton-lang/HEAD/src/main.rs --------------------------------------------------------------------------------