├── .gitignore ├── LICENSE ├── README.md └── src ├── Tokenizer.zig ├── comath.zig ├── compiled.zig ├── contexts.zig ├── contexts ├── Null.zig ├── fn_method.zig ├── namespace.zig └── simple.zig ├── eval.zig ├── parse.zig └── util.zig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/README.md -------------------------------------------------------------------------------- /src/Tokenizer.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/Tokenizer.zig -------------------------------------------------------------------------------- /src/comath.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/comath.zig -------------------------------------------------------------------------------- /src/compiled.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/compiled.zig -------------------------------------------------------------------------------- /src/contexts.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/contexts.zig -------------------------------------------------------------------------------- /src/contexts/Null.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/contexts/Null.zig -------------------------------------------------------------------------------- /src/contexts/fn_method.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/contexts/fn_method.zig -------------------------------------------------------------------------------- /src/contexts/namespace.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/contexts/namespace.zig -------------------------------------------------------------------------------- /src/contexts/simple.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/contexts/simple.zig -------------------------------------------------------------------------------- /src/eval.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/eval.zig -------------------------------------------------------------------------------- /src/parse.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/parse.zig -------------------------------------------------------------------------------- /src/util.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InKryption/comath/HEAD/src/util.zig --------------------------------------------------------------------------------