├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── compute ├── compute.go ├── compute_test.go └── stack.go ├── constants ├── constants.go └── standard.go ├── main.go └── operators ├── functions ├── abs.go ├── functions.go ├── log.go ├── sqrt.go └── trig.go ├── operators.go └── standard.go /.gitignore: -------------------------------------------------------------------------------- 1 | calc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/README.md -------------------------------------------------------------------------------- /compute/compute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/compute/compute.go -------------------------------------------------------------------------------- /compute/compute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/compute/compute_test.go -------------------------------------------------------------------------------- /compute/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/compute/stack.go -------------------------------------------------------------------------------- /constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/constants/constants.go -------------------------------------------------------------------------------- /constants/standard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/constants/standard.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/main.go -------------------------------------------------------------------------------- /operators/functions/abs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/functions/abs.go -------------------------------------------------------------------------------- /operators/functions/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/functions/functions.go -------------------------------------------------------------------------------- /operators/functions/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/functions/log.go -------------------------------------------------------------------------------- /operators/functions/sqrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/functions/sqrt.go -------------------------------------------------------------------------------- /operators/functions/trig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/functions/trig.go -------------------------------------------------------------------------------- /operators/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/operators.go -------------------------------------------------------------------------------- /operators/standard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredxing/calc/HEAD/operators/standard.go --------------------------------------------------------------------------------