├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── alloc ├── alloc.go └── alloc.py ├── arrays ├── arrays.go └── arrays.py ├── bench ├── bench.go └── bench.py ├── del ├── del.go └── del.py ├── error ├── error.go └── error.py ├── gen └── gen.go ├── go.mod ├── hello ├── hello.go └── hello.py ├── index.md ├── join ├── join.go └── join.py ├── list.png ├── numpypandas ├── numpypandas.go └── numpypandas.py ├── outputs ├── README.md ├── alloc.txt ├── arrays.txt ├── del.txt ├── hello.txt ├── numpypandas.txt ├── primitive.txt ├── string.txt └── structs.txt ├── pi.png ├── primitive ├── primitive.go └── primitive.py ├── shuffle.png ├── string ├── string.go └── string.py ├── structs ├── structs.go └── structs.py ├── test.sh └── tools ├── clean.bat └── run.bat /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/_config.yml -------------------------------------------------------------------------------- /alloc/alloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/alloc/alloc.go -------------------------------------------------------------------------------- /alloc/alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/alloc/alloc.py -------------------------------------------------------------------------------- /arrays/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/arrays/arrays.go -------------------------------------------------------------------------------- /arrays/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/arrays/arrays.py -------------------------------------------------------------------------------- /bench/bench.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/bench/bench.go -------------------------------------------------------------------------------- /bench/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/bench/bench.py -------------------------------------------------------------------------------- /del/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/del/del.go -------------------------------------------------------------------------------- /del/del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/del/del.py -------------------------------------------------------------------------------- /error/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/error/error.go -------------------------------------------------------------------------------- /error/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/error/error.py -------------------------------------------------------------------------------- /gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/gen/gen.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module snopher 2 | 3 | go 1.23 4 | -------------------------------------------------------------------------------- /hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/hello/hello.go -------------------------------------------------------------------------------- /hello/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/hello/hello.py -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/index.md -------------------------------------------------------------------------------- /join/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/join/join.go -------------------------------------------------------------------------------- /join/join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/join/join.py -------------------------------------------------------------------------------- /list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/list.png -------------------------------------------------------------------------------- /numpypandas/numpypandas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/numpypandas/numpypandas.go -------------------------------------------------------------------------------- /numpypandas/numpypandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/numpypandas/numpypandas.py -------------------------------------------------------------------------------- /outputs/README.md: -------------------------------------------------------------------------------- 1 | Expected outputs of scripts, for testing. 2 | -------------------------------------------------------------------------------- /outputs/alloc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/outputs/alloc.txt -------------------------------------------------------------------------------- /outputs/arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/outputs/arrays.txt -------------------------------------------------------------------------------- /outputs/del.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/outputs/del.txt -------------------------------------------------------------------------------- /outputs/hello.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /outputs/numpypandas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/outputs/numpypandas.txt -------------------------------------------------------------------------------- /outputs/primitive.txt: -------------------------------------------------------------------------------- 1 | 10 + 15 = 25 2 | -------------------------------------------------------------------------------- /outputs/string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/outputs/string.txt -------------------------------------------------------------------------------- /outputs/structs.txt: -------------------------------------------------------------------------------- 1 | John Galt 2 | -------------------------------------------------------------------------------- /pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/pi.png -------------------------------------------------------------------------------- /primitive/primitive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/primitive/primitive.go -------------------------------------------------------------------------------- /primitive/primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/primitive/primitive.py -------------------------------------------------------------------------------- /shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/shuffle.png -------------------------------------------------------------------------------- /string/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/string/string.go -------------------------------------------------------------------------------- /string/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/string/string.py -------------------------------------------------------------------------------- /structs/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/structs/structs.go -------------------------------------------------------------------------------- /structs/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/structs/structs.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/test.sh -------------------------------------------------------------------------------- /tools/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/tools/clean.bat -------------------------------------------------------------------------------- /tools/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluhus/snopher/HEAD/tools/run.bat --------------------------------------------------------------------------------