├── .gitignore ├── LICENSE ├── README.md ├── in.go └── ingo_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schachmat/ingo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schachmat/ingo/HEAD/README.md -------------------------------------------------------------------------------- /in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schachmat/ingo/HEAD/in.go -------------------------------------------------------------------------------- /ingo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schachmat/ingo/HEAD/ingo_test.go --------------------------------------------------------------------------------